MooshPost Method (String, DictionaryString, Object, ActionException, StreamReader) |
Asynchronously runs an HTTP POST request.
Namespace: MooshAssembly: Moosh (in Moosh.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static void Post(
string url,
Dictionary<string, Object> postData,
Action<Exception, StreamReader> callback
)
Public Shared Sub Post (
url As String,
postData As Dictionary(Of String, Object),
callback As Action(Of Exception, StreamReader)
)
public:
static void Post(
String^ url,
Dictionary<String^, Object^>^ postData,
Action<Exception^, StreamReader^>^ callback
)
static member Post :
url : string *
postData : Dictionary<string, Object> *
callback : Action<Exception, StreamReader> -> unit
Parameters
- url
- Type: SystemString
The URL to POST. - postData
- Type: System.Collections.GenericDictionaryString, Object
Additional data to include in the request. - callback
- Type: SystemActionException, StreamReader
A function (Exception, StreamReader) to be called upon completion.
See Also