Click or drag to resize
MooshGet Method (String, ActionHttpWebRequest, ActionException, StreamReader)
Asynchronously runs an HTTP GET request.

Namespace: Moosh
Assembly: Moosh (in Moosh.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void Get(
	string url,
	Action<HttpWebRequest> before,
	Action<Exception, StreamReader> callback
)

Parameters

url
Type: SystemString
The URL to GET.
before
Type: SystemActionHttpWebRequest
A function to run on the generated request before sending it.
callback
Type: SystemActionException, StreamReader
A function (Exception, StreamReader) to be called upon completion.
See Also