C# Class PRI.ProductivityExtensions.WebRequestExtensions.WebRequestable

Class that contains extension methods that extend WebRequest
Afficher le fichier Open project: peteraritchie/ProductivityExtensions

Méthodes publiques

Méthode Description
BeginGetRequestStream ( this webrequest, AsyncCallback callback ) : IAsyncResult

Extends BeginGetRequestStream so that when a state object is not needed, null does not need to be passed. webrequest.BeginGetRequestStream(callback);

BeginGetResponse ( this webrequest, AsyncCallback callback ) : IAsyncResult

Extends BeginGetResponse so that when a state object is not needed, null does not need to be passed. webrequest.BeginGetResponse(callback);

Method Details

BeginGetRequestStream() public static méthode

Extends BeginGetRequestStream so that when a state object is not needed, null does not need to be passed. webrequest.BeginGetRequestStream(callback);
public static BeginGetRequestStream ( this webrequest, AsyncCallback callback ) : IAsyncResult
webrequest this
callback AsyncCallback
Résultat IAsyncResult

BeginGetResponse() public static méthode

Extends BeginGetResponse so that when a state object is not needed, null does not need to be passed. webrequest.BeginGetResponse(callback);
public static BeginGetResponse ( this webrequest, AsyncCallback callback ) : IAsyncResult
webrequest this
callback AsyncCallback
Résultat IAsyncResult