Overriden LoadPostData.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected override bool LoadPostData(
	string postDataKey,
	NameValueCollection postCollection
)
Visual Basic
Protected Overrides Function LoadPostData ( 
	postDataKey As String,
	postCollection As NameValueCollection
) As Boolean
Visual C++
protected:
virtual bool LoadPostData(
	String^ postDataKey, 
	NameValueCollection^ postCollection
) override
F#
abstract LoadPostData : 
        postDataKey : string * 
        postCollection : NameValueCollection -> bool 
override LoadPostData : 
        postDataKey : string * 
        postCollection : NameValueCollection -> bool 

Parameters

postDataKey
Type: System..::..String
Post data key.
postCollection
Type: System.Collections.Specialized..::..NameValueCollection
Post data collection.

Return Value

Type: Boolean
True if the operation succeeds, false otherwise.

See Also