Method | Description | |
---|---|---|
Page_Load ( object sender, EventArgs, e ) : void |
This method called when the page is loaded into the web browser. This method requests input stream and parses it to get message counts.
|
Method | Description | |
---|---|---|
SaveMessage ( InboundSMSMessage, message ) : void |
This method reads the incoming message and stores the received message details.
|
|
SaveMessageCount ( InboundSMSMessage, message ) : void |
This method reads the incoming message and decides on to which message count needs to be updated. This method invokes another method to write the count to file
|
|
WriteToFile ( string filePathConfigKey ) : void |
This method gets the file name, reads from the file, increments the count(if any) and writes back to the file.
|
protected Page_Load ( object sender, EventArgs, e ) : void | ||
sender | object | object, which invoked this method |
e | EventArgs, | EventArgs, which specifies arguments specific to this method |
return | void |