StoredProcedureExecuteResponse<T> Class

Definition

The cosmos stored procedure response

public class StoredProcedureExecuteResponse<T> : Microsoft.Azure.Cosmos.Response<T>
type StoredProcedureExecuteResponse<'T> = class
    inherit Response<'T>
Public Class StoredProcedureExecuteResponse(Of T)
Inherits Response(Of T)

Type Parameters

T
Inheritance
StoredProcedureExecuteResponse<T>

Constructors

StoredProcedureExecuteResponse<T>()

Create a StoredProcedureExecuteResponse<T> as a no-op for mock testing

Properties

ActivityId

Gets the activity ID for the request from the Azure Cosmos DB service.

Diagnostics

Gets the cosmos diagnostics information for the current request to Azure Cosmos DB service

ETag

Gets the entity tag associated with the resource from the Azure Cosmos DB service.

Headers

Gets the current ResponseMessage HTTP headers.

RequestCharge

Gets the request charge for this request from the Azure Cosmos DB service.

Resource

The content of the response.

ScriptLog

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

SessionToken

Gets the token for use with session consistency requests from the Azure Cosmos DB service.

StatusCode

Gets the request completion status code from the Azure Cosmos DB service. This can be used to in scenario like CreateDatabaseIfNotExists to help determine if the database was created or already existed.

Applies to