public void KeyRoundtrip()
        {
            const string disallowedCharacters = "\\/#?а";
            string       encoded = AzureTable.KeyEncode(disallowedCharacters);
            string       decoded = AzureTable.KeyDecode(encoded);

            Assert.AreEqual(disallowedCharacters, decoded);
        }
Example #2
0
 private AzureTableEntity(Key key)
 {
     AzureTable.CheckKey(key);
     this.RowKey       = key.Row;
     this.PartitionKey = key.Partition;
 }