Esempio n. 1
0
 public static string GetTypeValue(string key)
 {
     if (_claimTypeValues.TryGetValue(key, out string value))
     {
         return(value);
     }
     return(key);
 }
Esempio n. 2
0
 public static string GetTypeKey(string value)
 {
     if (_claimTypeKeys.TryGetValue(value, out string key))
     {
         return(key);
     }
     return(value);
 }