MindFusion.UI for WebForms Programmer's Guide

Window.LoadPostData Method

See Also
 





IPostBackDataHandler.LoadPostData implementation.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public bool LoadPostData (
    string postDataKey,
    NameValueCollection postCollection
)

Visual Basic  Copy Code

Public Function LoadPostData( _
    postDataKey As String, _
    postCollection As NameValueCollection _
) As Boolean

 Parameters

postDataKey

Type: String
The key identifier for the Window.

postCollection

Type: NameValueCollection
The collection of all incoming name values.

 Return Value

Type: Boolean
true if the control's state changes as a result of the postback; otherwise, false.

 See Also