Couchbase.Management.BucketManager.BucketManager C# (CSharp) Method

BucketManager() private method

private BucketManager ( IBucket bucket, Couchbase.Configuration.Client.ClientConfiguration clientConfig, IDataMapper mapper, HttpClient httpClient, string username, string password ) : Common.Logging
bucket IBucket
clientConfig Couchbase.Configuration.Client.ClientConfiguration
mapper IDataMapper
httpClient System.Net.Http.HttpClient
username string
password string
return Common.Logging
        internal BucketManager(IBucket bucket, ClientConfiguration clientConfig, IDataMapper mapper, HttpClient httpClient, string username, string password)
        {
            _bucket = bucket;
            BucketName = bucket.Name;
            _clientConfig = clientConfig;
            Mapper = mapper;
            _password = password;
            _username = username;
            _httpClient = httpClient;
        }