示例#1
0
 public static string GetRowKeyPrefix(string displayName)
 {
     return(TableStorageUtilities.CombineStorageKeys(
                NameIndex.IndexId,
                TableStorageUtilities.EscapeStorageKey(displayName.ToUpper()),
                string.Empty));
 }
示例#2
0
 public static string GetRowKey(string displayName, string id)
 {
     return(TableStorageUtilities.CombineStorageKeys(
                NameIndex.IndexId,
                TableStorageUtilities.EscapeStorageKey(displayName.ToUpper()),
                TableStorageUtilities.EscapeStorageKey(id.ToUpper())));
 }
示例#3
0
 public static string GetRowKey(string projectId, string apiVersionValue)
 {
     return(TableStorageUtilities.CombineStorageKeys(
                ApiVersionIndex.IndexId,
                TableStorageUtilities.EscapeStorageKey(projectId.ToUpperInvariant()),
                TableStorageUtilities.EscapeStorageKey(apiVersionValue.ToUpperInvariant())));
 }
示例#4
0
 public static string GetRowKeyPrefix()
 {
     return(TableStorageUtilities.CombineStorageKeys(
                IdIndex.IndexId,
                string.Empty));
 }
示例#5
0
 public static string GetRowKey(string id)
 {
     return(TableStorageUtilities.CombineStorageKeys(
                IdIndex.IndexId,
                TableStorageUtilities.EscapeStorageKey(id.ToUpper())));
 }
示例#6
0
 public static string GetRowKeyPrefix()
 {
     return(TableStorageUtilities.CombineStorageKeys(
                ApiVersionIndex.IndexId));
 }