Property | Type | Description | |
---|---|---|---|
lockCookie | uint? | ||
service | StateServer | ||
timeout | int? |
Method | Description | |
---|---|---|
Process ( ) : void |
When overriden in a derived class, processes the message.
|
|
ServiceMessage ( HTTPPartialData HTTPData, StateServer Service ) : System |
Initializes a new instance of the ServiceMessage class
|
Method | Description | |
---|---|---|
GetKeyValue ( string Text, char Delimiter, string &Key, string &Value ) : void |
Parses a string for a Key and a Value
|
|
IsValidBase64 ( string Data ) : bool |
Verifies the supplied data is in valid Base64 format
|
|
Unquote ( string value ) : string |
Removes quotes from a string if the string is surrounded by quotes
|
|
Validate ( ) : bool |
Validates a message
|
protected static GetKeyValue ( string Text, char Delimiter, string &Key, string &Value ) : void | ||
Text | string | The text to parse |
Delimiter | char | Delimiter seperating key and value |
Key | string | Key |
Value | string | Value |
return | void |
protected static IsValidBase64 ( string Data ) : bool | ||
Data | string | Data to verify |
return | bool |
public ServiceMessage ( HTTPPartialData HTTPData, StateServer Service ) : System | ||
HTTPData | HTTPPartialData | The HTTPPartialData class to load this instance from |
Service | StateServer | State server instance |
return | System |
protected Unquote ( string value ) : string | ||
value | string | Quoted/Unquoted string |
return | string |