C# 클래스 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.
파일 보기 프로젝트 열기: cloudant/xamarin-cloudant 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
httpHelper HttpHelper

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
InitHttpHelper ( List interceptors ) : void

메소드 상세

CloudantClient() 공개 메소드

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.
리턴 System

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.
public Database ( String dbname ) : Database
dbname String name of database to access
리턴 Database

프로퍼티 상세

httpHelper 공개적으로 프로퍼티

HttpHelper object used by this client instance to execute http requests.
public HttpHelper,IBM.Cloudant.Client httpHelper
리턴 HttpHelper