Class RequestEventArgs
- Namespace
- Microsoft.WindowsAzure.Storage
- Assembly
- Microsoft.WindowsAzure.Storage.dll
Provides information and event data that is associated with a request event.
public sealed class RequestEventArgs : EventArgs
- Inheritance
-
RequestEventArgs
- Inherited Members
Constructors
RequestEventArgs(RequestResult)
Initializes a new instance of the RequestEventArgs class by using the specified RequestResult parameter.
public RequestEventArgs(RequestResult res)
Parameters
res
RequestResultThe RequestResult object.
Properties
Request
Gets the HTTP request associated with this event.
public HttpWebRequest Request { get; }
Property Value
- HttpWebRequest
The HTTP request associated with this event.
RequestInformation
Gets the request information associated with this event.
public RequestResult RequestInformation { get; }
Property Value
- RequestResult
The request information associated with this event.
Response
Gets the HTTP response associated with this event.
public HttpWebResponse Response { get; }
Property Value
- HttpWebResponse
The HTTP response associated with this event.