2 overrides of KeyTypes
System.IdentityModel (2)
System\IdentityModel\Protocols\WSTrust\WSTrust13ConstantsAdapter.cs (1)
76
internal override WSTrustKeyTypes
KeyTypes
System\IdentityModel\Protocols\WSTrust\WSTrustFeb2005ConstantsAdapter.cs (1)
62
internal override WSTrustKeyTypes
KeyTypes
9 references to KeyTypes
System.IdentityModel (9)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (9)
2716
if (trustConstants.
KeyTypes
.Symmetric.Equals(incomingKeyType))
2720
else if (trustConstants.
KeyTypes
.Asymmetric.Equals(incomingKeyType))
2724
else if (trustConstants.
KeyTypes
.Bearer.Equals(incomingKeyType))
2758
if (StringComparer.Ordinal.Equals(keyType, KeyTypes.Asymmetric) || StringComparer.Ordinal.Equals(keyType, trustConstants.
KeyTypes
.Asymmetric))
2760
keyTypeAsStr = trustConstants.
KeyTypes
.Asymmetric;
2762
else if (StringComparer.Ordinal.Equals(keyType, KeyTypes.Symmetric) || StringComparer.Ordinal.Equals(keyType, trustConstants.
KeyTypes
.Symmetric))
2764
keyTypeAsStr = trustConstants.
KeyTypes
.Symmetric;
2766
else if (StringComparer.Ordinal.Equals(keyType, KeyTypes.Bearer) || StringComparer.Ordinal.Equals(keyType, trustConstants.
KeyTypes
.Bearer))
2768
keyTypeAsStr = trustConstants.
KeyTypes
.Bearer;