WorkflowView.LoadViewState(Stream) Method

Definition

Restores view-state information from a binary stream.

public:
 void LoadViewState(System::IO::Stream ^ viewState);
public void LoadViewState (System.IO.Stream viewState);
member this.LoadViewState : System.IO.Stream -> unit
Public Sub LoadViewState (viewState As Stream)

Parameters

viewState
Stream

A BinaryReader used to restore the view state.

Examples

The following example demonstrates how to load the view state for a WorkflowView object by creating a FileStream object with the FileMode.Open flag and passing it to the LoadViewState method. The view state file was created using the SaveViewState method.

public void LoadViewState()
{
    using (FileStream fs = new FileStream(@"viewstate.bin", FileMode.Open))
    {
        this.workflowView.LoadViewState(fs);
    }
}
Public Sub LoadViewState()
    Using fs As New FileStream("viewstate.bin", FileMode.Open)
        Me.workflowView.LoadViewState(fs)
    End Using
End Sub

Remarks

LoadViewState restores view-state information previously saved by calling the SaveViewState method.

Override this method when you need to customize how a custom designer restores its view-state.

Applies to