Amazon.CognitoSync.SyncManager.Dataset.Dataset C# (CSharp) Метод

Dataset() приватный Метод

Creates a new Dataset
private Dataset ( string datasetName, CognitoAWSCredentials cognitoCredentials, ILocalStorage local, CognitoSyncStorage remote ) : Amazon.CognitoIdentity
datasetName string The name of the dataset
cognitoCredentials Amazon.CognitoIdentity.CognitoAWSCredentials The Cognito Credentials associated with the dataset
local ILocalStorage Local storage, can be InMemoryStorage or SQLiteStorage or Some Custom Storage Class which implements
remote Amazon.CognitoSync.SyncManager.Internal.CognitoSyncStorage Remote storage
Результат Amazon.CognitoIdentity
        internal Dataset(string datasetName, CognitoAWSCredentials cognitoCredentials, ILocalStorage local, CognitoSyncStorage remote)
        {
            this._datasetName = datasetName;
            this._cognitoCredentials = cognitoCredentials;
            this._local = local;
            this._remote = remote;
            _logger = Logger.GetLogger(this.GetType());
            DatasetSetupInternal();
        }