C# Class IBM.Cloudant.Client.CloudantClient

The main object for the Cloudant client public API.
This class is used for creating, deleting, or connecting to a Cloudant database.
Afficher le fichier Open project: cloudant/xamarin-cloudant Class Usage Examples

Méthodes publiques

Свойство Type Description
httpHelper HttpHelper

Méthodes publiques

Méthode Description
CloudantClient ( CloudantClientBuilder builder ) : System

Constructs a new instance of this class and connects to the cloudant server using a builder class.

Database ( String dbname ) : Database

Creates a database object that represents a database on the server. However the database may not exist on the server yet. You should call IBM.Cloudant.Client.Database.EnsureExistsAsync to ensure the database exists on the server before performing reads or writes.

Private Methods

Méthode Description
InitHttpHelper ( List interceptors ) : void

Method Details

CloudantClient() public méthode

Constructs a new instance of this class and connects to the cloudant server using a builder class.
public CloudantClient ( CloudantClientBuilder builder ) : System
builder CloudantClientBuilder Builder class.
Résultat System

Database() public méthode

Creates a database object that represents a database on the server. However the database may not exist on the server yet. You should call IBM.Cloudant.Client.Database.EnsureExistsAsync to ensure the database exists on the server before performing reads or writes.
public Database ( String dbname ) : Database
dbname String name of database to access
Résultat Database

Property Details

httpHelper public_oe property

HttpHelper object used by this client instance to execute http requests.
public HttpHelper,IBM.Cloudant.Client httpHelper
Résultat HttpHelper