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