Request PropertiesC# API
The Request type exposes the following members.
Properties

  NameDescription
Public propertyCharactersAllowedInPostedForm
Gets or sets the characters that will NOT be percent-encoded when a Form is sent to the web server using a POST request.
Public propertyChunkSize
Gets or sets the size in bytes of each chunk when sending data using Transfer-Encoding: chunked
Public propertyContentType
Gets or sets the value of the "Content-Type" HTTP header.
Public propertyFollowRedirects
Gets or sets a value that indicates whether redirects will automatically be followed for this Request.
Public propertyHasReferer
Gets a value that indicates whether the "Referer" HTTP header has been set for this Request.
Public propertyHeaderKeys
Gets a list of names of all the HTTP request headers set in this Request.
Public propertyID
Gets the unique ID that has been assigned to this Request.
Public propertyIgnoredSubRequests
Gets or sets the list of sub-requests that will be ignored when fetching sub-requests from the web server.
Public propertyIncludeQueryDataInLabels
Gets or sets a value that indicates whether URLs with different query data should be considered different from each other for analysis purposes.
Public propertyIsDynatraceIntegrationEnabled
Gets or sets a value that indicates whether dynaTrace integration is enabled.
Public propertyKeepAllSubRequestContent
Gets or sets a value that indicates whether the content of responses to sub-requests will be kept.
Public propertyKeepContent
Gets or sets a value that indicates whether the content of responses will be kept.
Public propertyMethod
Gets the HTTP method that this Request uses (e.g. GET or POST)
Public propertyReference
Gets the reference id that was passed to the CreateRequest(HttpMethod, Url, Int32) method when this Request object was created.
Public propertyReferer
Gets or sets the value of the "Referer" HTTP header.
Public propertyRetrieveSubRequests
Gets or sets a value that indicates whether sub-requests will be retrieved for this Request.
Public propertySubRequests
Gets or sets the list of sub-requests that will be fetched from the web server by this request. The sub-requests will be fetched when Send  or SendSubRequests(Response) are called.
Public propertySubRequestThreadCount
Gets or sets the number of threads that will be used to fetch sub-requests from the web server.
Public propertyTimeEveryHttpRequest
Gets or sets a value that indicates whether sub-requests will be timed as well as top-level HTTP requests.
Public propertyUrl
Gets or sets the Url that this Request is targeting.
Public propertyUserAgent
Gets or sets the value of the "User-Agent" HTTP header.
Public propertyVersion
Gets or sets the HTTP version as a string.
Back to Top
See Also