Exemplo n.º 1
0
        public virtual async Task <bool> InitAsync()
        {
            _table = await TableExtensions
                     .CreateTableClientAsync(
                _credentials, TableName, true, _logger)
                     .ConfigureAwait(false);

            return(_table != null);
        }