6 overrides of GetTokenTypesCore
System.ServiceModel.Primitives (6)
System\ServiceModel\Security\WSSecureConversation.cs (2)
82protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(DerivedKeySecurityToken) }; } 315protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(SecurityContextSecurityToken) }; }
System\ServiceModel\Security\WSSecurityJan2004.cs (3)
192protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(GenericXmlSecurityToken) }; } 251protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(UserNameSecurityToken) }; } 380protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(X509SecurityToken) }; }
System\ServiceModel\Security\WSTrust.cs (1)
71protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(BinarySecretSecurityToken) }; }
1 reference to GetTokenTypesCore
System.ServiceModel.Primitives (1)
System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
441_tokenTypes = GetTokenTypesCore();