Class NetworkRequestSentEventArgs
Provides data for the NetworkRequestSent event of an object implementing the INetwork interface.
public class NetworkRequestSentEventArgs : EventArgs
- Inheritance
-
NetworkRequestSentEventArgs
- Inherited Members
Constructors
NetworkRequestSentEventArgs(HttpRequestData)
Initializes a new instance of the NetworkRequestSentEventArgs class.
public NetworkRequestSentEventArgs(HttpRequestData requestData)
Parameters
requestData
HttpRequestDataThe HttpRequestData that describes the network request.
Properties
RequestHeaders
Gets the collection of headers associated with the network request.
public IReadOnlyDictionary<string, string> RequestHeaders { get; }
Property Value
RequestId
Gets the internal request ID of the network request.
public string RequestId { get; }
Property Value
RequestMethod
Gets the HTTP method of the network request.
public string RequestMethod { get; }
Property Value
RequestPostData
Gets the post data of the network request, if any.
public string RequestPostData { get; }
Property Value
RequestUrl
Gets the URL of the network request.
public string RequestUrl { get; }