Share via


StoredProcedureResponse Class

Definition

The cosmos stored procedure response

public class StoredProcedureResponse : Microsoft.Azure.Cosmos.Response<Microsoft.Azure.Cosmos.Scripts.StoredProcedureProperties>
type StoredProcedureResponse = class
    inherit Response<StoredProcedureProperties>
Public Class StoredProcedureResponse
Inherits Response(Of StoredProcedureProperties)
Inheritance
StoredProcedureResponse

Constructors

Name Description
StoredProcedureResponse()

Create a StoredProcedureResponse as a no-op for mock testing

Properties

Name Description
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.

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.

Operators

Name Description
Implicit(StoredProcedureResponse to StoredProcedureProperties)

Get StoredProcedureProperties implicitly from StoredProcedureResponse

Extension Methods

Name Description
GetIndexMetrics<T>(Response<T>)

This extension method returns the Index Metrics for a given Response object. The index utilization metrics is to be used for debugging purposes only. This result is only available if QueryRequestOptions.PopulateIndexMetrics is set to true.Returns null if the index metrics is not available in the response.

Applies to