StoredProcedureResponse Class

 

Updated: June 30, 2017

Represents the response returned from a database stored procedure in the Azure DocumentDB database service. Wraps the response body and headers.

Namespace:   Microsoft.Azure.Documents.Client
Assembly:  Microsoft.Azure.Documents.Client (in Microsoft.Azure.Documents.Client.dll)

SystemObject
  Microsoft.Azure.Documents.ClientStoredProcedureResponse

No code example is currently available or this language may not be supported.

Type Parameters

TValue

The returned value type of the stored procedure.

NameDescription
System_CAPS_pubmethodStoredProcedureResponse

Constructor exposed for mocking purposes in Azure DocumentDB database service.

NameDescription
System_CAPS_pubproperty

Gets the Activity ID of the request from the Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the delimited string containing the usage of each resource type within the collection from the Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the flag associated with the response from the Azure DocumentDB database service whether this stored procedure request is served from Request Units(RUs)/minute capacity or not.

System_CAPS_pubproperty

Gets the delimited string containing the quota of each resource type within the collection from the Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the number of normalized Azure DocumentDB request units (RUs) charged from Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the response of a stored procedure, serialized into the given type from the Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the headers associated with the response from the Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the output from stored procedure console.log() statements.

System_CAPS_pubproperty

Gets the token for use with session consistency requests from the Azure DocumentDB database service.

System_CAPS_pubproperty

Gets the request completion status code from the Azure DocumentDB database service.

NameDescription
System_CAPS_pubmethodEquals

(Inherited from Object.)

System_CAPS_protmethodFinalize

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode

(Inherited from Object.)

System_CAPS_pubmethodGetType

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone

(Inherited from Object.)

System_CAPS_pubmethodToString

(Inherited from Object.)

NameDescription
System_CAPS_puboperatorSystem_CAPS_static

Gets the resource implicitly from Azure DocumentDB database service.

NameDescription
System_CAPS_pubmethodIsDefined

Determines if a certain property is defined or not. (Defined by TypeCheckFunctionsExtensions.)

System_CAPS_pubmethodIsNull

Determines if a certain property is null or not. (Defined by TypeCheckFunctionsExtensions.)

System_CAPS_pubmethodIsPrimitive

Determines if a certain property is of premitive JSON type. (Defined by TypeCheckFunctionsExtensions.)

Stored procedures can return any string output via the getContext().getResponse().setBody() method. This response body could be a serialized JSON object, or any other type. Within the .NET SDK, you can deserialize the response into a corresponding TValue type.

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: