| Name | Description |
| CreateNewInstance | Creates a new instance of the current type using the default constructor. Derived classes may override the method if there is no parameterless constructor or any other custom logic applies. |
| Flush | Empties the positional and occasional property stringBuffers and converts them to a string representation that can be written to the response stream. |
| GetClientPropertiesArray | |
| LoadAdditionalClientState | This method is called when additional information is passed from the client, via the _saveAdditionalClientState javascript method |
| LoadClientCollections | Loads the Collections that were sent down to the client, back into the control. |
| LoadClientCollectionsTransactionList | Reads the TransactionList and repopulates the collections of the control. |
| LoadClientObjects | Loads the Objects that were sent down to the client, back into the control. |
| LoadClientObjectsTransactionList | Reads the Transaction List and repopulates the objects of the control. |
| LoadClientProperties | |
| LoadClientPropsTransactionList | Reads the Transaction List and repopulates the properties of the control. |
| LoadClientState | This method takes the state from the client and loads the control's Properties, Objects, and Collections, that were sent down to the client on the last post. It also stores the TransactionLists for the Properties, Objects, and Collections. |
| LoadClientStateFromViewState | Checks to see if ClientState was saved into Viewstate, if so, then it loads. |
| LoadCollectionsStateFromViewState | Loads the saved into view state client collections and deserializes the string as it came from the client side. |
| LoadOccasionalProperties | |
| LoadOccasionalProperty | |
| LoadPositionalProperties | Loads client state properties from the client |
| LoadPositionalProperty | Load positional property at index |
| LoadTransactionList | Loads the transaction list. |
| LoadViewState | This method loads the data contained in the state parameter into the ViewState bag for the object. |
| OnPropertyChange | Overloaded. Virtual method that is called whenever a server state property within the object has been changed. |
| PreFetchPositionalClientProperty | Fetch a positional property from the transaction list before the properties are loaded. |
| ResetClientState | Resets the positional and occasional property stringBuffers to initial empty values. |
| SaveClientCollections | Saves all Collections that should go to the client into a javascript array. |
| SaveClientObjects | Saves all objects that should go to the client into a javascript array. |
| SaveClientProperties | Overloaded. Virtual method that serializes the ClientState properties of the object to a JSON stream that will be accessed from the client. The FullAddress property of the Object is also accessed in this process to identify the object being serialized to JSON. |
| SaveClientStateToViewState | If the control is not visible, we don't want to loose our ClientState during the next postback, so lets store it in ViewState. |
| SaveCollectionsStateToViewState | Saves the client collections state as string into the view state. This way we can skip the expensive serialization on the client side and not send them at all. |
| SaveViewState | This method saves the property settings in the ViewState bag to the ViewState hidden field on the page for roundtripping between the server and client. |
| TrackViewState | This method turns on ViewState tracking for the object |
| WriteAdditionalClientProperties | If an object needs to render additional information that needs to be accessed on the client, this is where they can add this information. Note that each object that they need to render should be prefixed with a Comma because the information is being rendered inside of a javascript array. This method is called by WriteClientProperties |
| WriteClientCollections | |
| WriteClientObjects | |
| WriteClientOnlyProperty | Stores the property in hashtable, that will be rendered down to the client. Client only properties only get sent down to the client, they do not get sent back to the server. |
| WriteClientProperties | |
| WriteClientState | Responsible for rendering javascript array of all client properties, events, objects and collections Calls helper methods to render each in turn. That method is called to render parameter for initialization (constructor) java-script function. |
| WritePositionalProperty | Writes the passed in property value at the current position of the ClientState serialization. The property is serialized to the positional properties string of the ClientState string. |