NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DynamicImage.LoadState

Load previously saved state. We write this method specially because the internal implementation of "state persistence" converts all objects to strings before storing them, but there is no internal conversion available for NameValueCollection. So we convert this object to a string and store it along with the rest of the state. The corresponding SaveState() method must save the state in a format identical to the format used by LoadState() to load the state.

[Visual Basic]
Overrides Protected Sub LoadState( _
   ByVal savedState As Object _
)
[C#]
protected override void LoadState(
   object savedState
);
[C++]
protected: override void LoadState(
   Object* savedState
);
[JScript]
protected override function LoadState(
   savedState : Object
);

Parameters

savedState
[To be supplied.]

See Also

DynamicImage Class | DynamicImage Members | System.Web.UI.WebControls Namespace