NET API
HSM Dinamo
Loading...
Looking for...
No entries found
Data Fields
Structure Reference DinamoApi.PIXHTTPReqDetails

Data Fields

Int64 uiNameLookupTime
 
Int64 uiConnectTime
 
Int64 uiAppconnectTime
 
Int64 uiPretransferTime
 
Int64 uiStarttransferTime
 
Int64 uiTotalTime
 
Int64 uiRedirectTime
 
Int64 uiContentLengthUpload
 
Int64 uiContentLengthDownload
 
Int64 uiUploadSpeed
 
Int64 uiDownloadSpeed
 
Int64 uiDownloadSize
 
Int64 uiUploadSize
 
Int64 lRedirectCount
 
Int64 lNumConnects
 
Int64 lRequestSize
 
Int64 lReceivedHeaderSize
 
Int64 lHttpResponseCode
 

Detailed description

Details of a PIX Request HTTP operation (POST, GET...).

Examples
post_put_get_delete_pix.cs.

Fields

uiNameLookupTime

Int64 uiNameLookupTime

Time elapsed between the start of the request and the end of the name resolution. Time in milliseconds.

uiConnectTime

Int64 uiConnectTime

Elapsed time between the start of the request and the end of the connection with the remote host (or proxy). If there is redirection, the time is added. Time in milliseconds.

uiAppconnectTime

Int64 uiAppconnectTime

Elapsed time between the start of the request and the end of the SSL/SSH handshake with the remote host. Time in milliseconds.

uiPretransferTime

Int64 uiPretransferTime

Time elapsed between the start of the request and the moment just before the data is sent. If there is redirection, the time is added. Time in milliseconds.

uiStarttransferTime

Int64 uiStarttransferTime

Time elapsed between the start of the request until the first byte is received. If there is redirection, the time is added. Time in milliseconds.

uiTotalTime

Int64 uiTotalTime

Total request time. If there is redirection, the time is added. Time in milliseconds.

Examples
post_put_get_delete_pix.cs.

uiRedirectTime

Int64 uiRedirectTime

Total time taken for redirects. Time in milliseconds.

uiContentLengthUpload

Int64 uiContentLengthUpload

Content-length when uploading data. Retrieved from the "Content-Length" field. Gets -1 if the length is not known. Size in bytes.

uiContentLengthDownload

Int64 uiContentLengthDownload

Content-length when downloading data. Retrieved from the "Content-Length" field. Gets -1 if the length is not known. Size in bytes.

uiUploadSpeed

Int64 uiUploadSpeed

Average speed of the complete upload. Speed in bytes/second.

uiDownloadSpeed

Int64 uiDownloadSpeed

Average speed of the complete download. Speed in bytes/second.

uiDownloadSize

Int64 uiDownloadSize

Total size of the download payload (body). Metadata and headers are not included in this count. Size in bytes.

uiUploadSize

Int64 uiUploadSize

Total size of the upload payload (body). Size in bytes.

lRedirectCount

Int64 lRedirectCount

Count of redirects made.

lNumConnects

Int64 lNumConnects

Count of connections created to complete the previous transfer.

lRequestSize

Int64 lRequestSize

Total size of the request sent. Size in bytes.

lReceivedHeaderSize

Int64 lReceivedHeaderSize

Total size of all headers received. Size in bytes.

lHttpResponseCode

Int64 lHttpResponseCode

HTTP response code for the request. It will be zero if no response code is received.

Examples
post_put_get_delete_pix.cs.