DatabaseResponse Class

Definition

The cosmos database response

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

Constructors

DatabaseResponse()

Create a DatabaseResponse as a no-op for mock testing

Properties

ActivityId

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

Database

The reference to the cosmos database. This allows additional operations for the database and easier access to the container operations

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.

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

Implicit(DatabaseResponse to Database)

Get Database implicitly from DatabaseResponse

Applies to