Amido.Testing.Azure.Tables.TableSettings.TableSettings C# (CSharp) Method

TableSettings() public method

Constructs a TableSettings.
public TableSettings ( string accountName, string accountKey, bool useHttps )
accountName string The storage account name.
accountKey string The storage account key.
useHttps bool Use https.
        public TableSettings(string accountName, string accountKey, bool useHttps)
        {
            AccountName = accountName;
            AccountKey = accountKey;
            UseHttps = useHttps;
        }
    }
TableSettings