20 references to BearerKey
System.IdentityModel (1)
System\IdentityModel\Tokens\SecurityKeyType.cs (1)
23
|| value == SecurityKeyType.
BearerKey
);
System.ServiceModel (19)
System\ServiceModel\Channels\SecurityBindingElement.cs (6)
1304
if (issuedTokenParameters.KeyType == SecurityKeyType.
BearerKey
)
1342
if (issuedTokenParameters != null && issuedTokenParameters.KeyType != SecurityKeyType.
BearerKey
)
1376
if (issuedTokenParameters.KeyType == SecurityKeyType.
BearerKey
)
1417
if (issuedTokenParameters != null && issuedTokenParameters.KeyType != SecurityKeyType.
BearerKey
)
1672
if (issuedTokenParameters.KeyType == SecurityKeyType.
BearerKey
)
1707
if (issuedTokenParameters != null && issuedTokenParameters.KeyType != SecurityKeyType.
BearerKey
)
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (2)
586
if (issuedParameters.KeyType == System.IdentityModel.Tokens.SecurityKeyType.
BearerKey
)
641
return ((IssuedSecurityTokenParameters)tokenParameters).KeyType == SecurityKeyType.
BearerKey
;
System\ServiceModel\FederatedMessageSecurityOverHttp.cs (2)
136
if ((this.IssuedKeyType == SecurityKeyType.
BearerKey
) &&
277
if ((issuedTokenParameters.KeyType == SecurityKeyType.
BearerKey
) &&
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (2)
683
if (this.keyType == SecurityKeyType.
BearerKey
)
801
if (this.keyType == SecurityKeyType.
BearerKey
)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (5)
690
if (!this.isKeySizePresentInRstProperties && this.keyType != SecurityKeyType.
BearerKey
)
839
if ((this.keyType == SecurityKeyType.SymmetricKey) || (this.keyType == SecurityKeyType.
BearerKey
))
990
(this.keyType == SecurityKeyType.
BearerKey
))
994
serviceToken = rstr.GetIssuedToken(null, null, this.KeyEntropyMode, keyEntropy, null, authorizationPolicies, this.keySize, this.keyType == SecurityKeyType.
BearerKey
);
1089
if (this.keyType == SecurityKeyType.
BearerKey
)
System\ServiceModel\Security\WSTrustDec2005.cs (2)
72
if (keyType == SecurityKeyType.
BearerKey
)
93
keyType = SecurityKeyType.
BearerKey
;