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