Click or drag to resize

Report Structure

The report structure helps to provide diagnostics information about the service just requested
Inheritance Hierarchy
SystemObject
  SystemValueType
    AppOne.Services.V2Report

Namespace: AppOne.Services.V2
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public struct Report

The Report type exposes the following members.

Properties
 NameDescription
Public propertyAPIVersion The current API Version being used.
Public propertyProcessTime The amount of time it took for the internal web service logic to process not including any object serialization performed by WCF.
Public propertyRequestTime The exact point in that WCF hands off the deserialized object to the service code.
Public propertyResponseTime The exact point in time when the service is done processing and hands the object back to WCF to be serialized and sent back to the client.
Public propertyResults The number of items that are present in the Results array.
Top
Remarks
The Report structure is used with every outbound service request. It provides diagnostics information that will help to present information about service operation.

Example
JavaScript
{
"Report": {
    "ProcessTime": "32.0550899",
    "RequestTime": "/Date(1423181232901-0700)/",
    "ResponseTime": "/Date(1423181932957-0700)/",
    "Results": 5123
},
...
See Also