Posts the supplied data to specified url.

Namespace: MonoSoftware.Web.AntiSpam.AntiSpamProviders.Defensio
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public string Post(
	string url,
	NameValueCollection values
)
Visual Basic
Public Function Post ( 
	url As String,
	values As NameValueCollection
) As String
Visual C++
public:
String^ Post(
	String^ url, 
	NameValueCollection^ values
)
F#
member Post : 
        url : string * 
        values : NameValueCollection -> string 

Parameters

url
Type: System..::..String
The url to post to.
values
Type: System.Collections.Specialized..::..NameValueCollection
The values to post.

Return Value

Type: String
a string containing the result of the post.

See Also