C# Class Listener, API-Platform

Afficher le fichier Open project: attdevsupport/API-Platform Class Usage Examples

Méthodes protégées

Méthode 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.

Private Methods

Méthode 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.

Method Details

Page_Load() protected méthode

This method called when the page is loaded into the web browser. This method requests input stream and parses it to get message counts.
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
Résultat void