public GetListableTags(string userId, string secret, IStorageCommandBuilder commandBuilder, IStorageCommandAuthenticator authenticator)
 {
     _commandBuilder = commandBuilder;
     _userId = userId;
     _secret = secret;
     _authenticator = authenticator;
 }
 public GetSystemMetadata(string userId, string secret, IStorageCommandBuilder commandBuilder, IStorageCommandAuthenticator authenticator)
 {
     _commandBuilder = commandBuilder;
     _userId         = userId;
     _secret         = secret;
     _authenticator  = authenticator;
 }
 public GetUserMetadata(string userId, string secret, IStorageCommandBuilder commandBuilder, IStorageCommandAuthenticator authenticator)
 {
     _commandBuilder = commandBuilder;
     _userId = userId;
     _secret = secret;
     _authenticator = authenticator;
 }
 public GetListableTags(string userId, string secret, IStorageCommandBuilder commandBuilder, IStorageCommandAuthenticator authenticator)
 {
     _commandBuilder = commandBuilder;
     _userId         = userId;
     _secret         = secret;
     _authenticator  = authenticator;
 }
Пример #5
0
 public StorageClient(string userId, string base64Secret, string storageServiceRootUrl)
 {
     _userId        = userId;
     _secret        = base64Secret;
     _baseUrl       = storageServiceRootUrl;
     _builder       = new StorageCommandBuilder();
     _authenticator = new StorageCommandAuthenticator();
 }
Пример #6
0
 public StorageClient(string userId, string base64Secret, string storageServiceRootUrl)
 {
     _userId = userId;
     _secret = base64Secret;
     _baseUrl = storageServiceRootUrl;
     _builder = new StorageCommandBuilder();
     _authenticator = new StorageCommandAuthenticator();
 }
 public SetObjectACL(string userId,
                     string base64Secret,
                     IStorageCommandBuilder commandBuilder,
                     IStorageCommandAuthenticator authenticator)
 {
     _userId         = userId;
     _authenticator  = authenticator;
     _commandBuilder = commandBuilder;
     _secret         = base64Secret;
 }
Пример #8
0
 public GetObjectACL(string userId,
                                 string base64Secret, 
                                 IStorageCommandBuilder commandBuilder, 
                                 IStorageCommandAuthenticator authenticator)
 {
     _userId = userId;
     _authenticator = authenticator;
     _commandBuilder = commandBuilder;
     _secret = base64Secret;
 }
Пример #9
0
 public DeleteUserMetadata(string userId,
                           string base64Secret,
                           IStorageCommandBuilder commandBuilder,
                           IStorageCommandAuthenticator authenticator)
 {
     _userId         = userId;
     _authenticator  = authenticator;
     _commandBuilder = commandBuilder;
     _secret         = base64Secret;
 }
 public SetUserMetadata(string userId,
                                 string base64Secret, 
                                 IStorageCommandBuilder commandBuilder, 
                                 IStorageCommandAuthenticator authenticator)
 {
     _userId = userId;
     _authenticator = authenticator;
     _commandBuilder = commandBuilder;
     _secret = base64Secret;
 }
Пример #11
0
 public ListNamespace(string userId,
                      string base64Secret,
                      IStorageCommandBuilder commandBuilder,
                      IStorageCommandAuthenticator authenticator)
 {
     _userId         = userId;
     _authenticator  = authenticator;
     _commandBuilder = commandBuilder;
     _secret         = base64Secret;
 }