1 type derived from X509SecurityToken
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\X509WindowsSecurityToken.cs (1)
11public class X509WindowsSecurityToken : X509SecurityToken
5 instantiations of X509SecurityToken
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\IdentityModel\Selectors\X509SecurityTokenProvider.cs (1)
65return await Task.FromResult<SecurityToken>(new X509SecurityToken(_certificate));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (3)
406SecurityToken token = new X509SecurityToken(certificate2, false); 428SecurityToken token = new X509SecurityToken(_clientCertificate); 641SecurityToken token = new X509SecurityToken(certificate2, false);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityJan2004.cs (1)
490return new X509SecurityToken(certificate, id, false);
18 references to X509SecurityToken
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\IdentityModel\Selectors\X509SecurityTokenAuthenticator.cs (3)
55return token is X509SecurityToken; 60X509SecurityToken x509Token = (X509SecurityToken)token;
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityJan2004.cs (3)
176protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(X509SecurityToken), typeof(X509WindowsSecurityToken) }; } 356public override Type TokenType { get { return typeof(X509SecurityToken); } } 560return typeof(X509SecurityToken);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityXXX2005.cs (1)
167public override Type TokenType { get { return typeof(X509SecurityToken); } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (2)
87var x509Token = (X509SecurityToken)clientCertificateToken.Token;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsChannelFactory.cs (2)
233X509SecurityToken x509Token = (X509SecurityToken)clientCertificateToken.Token;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (6)
259X509SecurityToken x509Token = token as X509SecurityToken; 264SRServiceModel.InvalidTokenProvided, _serverTokenProvider.GetType(), typeof(X509SecurityToken)))); 444private X509SecurityToken _clientToken; 527_clientToken = (X509SecurityToken)_clientCertificateProvider.GetTokenAsync(cts.Token).GetAwaiter().GetResult(); 541_clientToken = (X509SecurityToken)(await _clientCertificateProvider.GetTokenAsync(cts.Token));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityJan2004.cs (1)
476protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(X509SecurityToken), typeof(X509WindowsSecurityToken) }; }