public Table CreateTable(
            string tableName,
            string xmsclientrequestId = null)
        {
            string strResult = Internal.InternalMethods.CreateTable(AccountName, SharedKey, UseHTTPS, tableName, xmsclientrequestId);
            Table  t         = new Table()
            {
                AzureTableService = this,
                Name = tableName
            };

            t.Url = Table.GenerateUriFromParameters(t);

            return(t);
        }