Class HttpRequestInfo
The Http request info.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class HttpRequestInfo
Constructors
HttpRequestInfo()
Initializes a new instance of the HttpRequestInfo class.
Declaration
public HttpRequestInfo ();
HttpRequestInfo(String, String, String, String)
Initializes a new instance of the HttpRequestInfo class.
Declaration
public HttpRequestInfo (string clientRequestId = null, string clientIpAddress = null, string method = null, string uri = null);
Parameters
|
String
clientRequestId
the client request id. |
|
String
clientIpAddress
the client Ip Address |
|
String
method
the Http request method. |
|
String
uri
the Uri. |
Properties
ClientIpAddress
Gets or sets the client Ip Address
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="clientIpAddress")]
public string ClientIpAddress { get; set; }
Property Value
|
String
|
ClientRequestId
Gets or sets the client request id.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="clientRequestId")]
public string ClientRequestId { get; set; }
Property Value
|
String
|
Method
Gets or sets the Http request method.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="method")]
public string Method { get; set; }
Property Value
|
String
|
Uri
Gets or sets the Uri.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="uri")]
public string Uri { get; set; }
Property Value
|
String
|