9 overrides of GetTokenTypesCore
System.ServiceModel (9)
System\ServiceModel\Security\WSSecureConversation.cs (2)
97protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(DerivedKeySecurityToken) }; } 332protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(SecurityContextSecurityToken) }; }
System\ServiceModel\Security\WSSecurityJan2004.cs (6)
202protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(GenericXmlSecurityToken) }; } 257protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(KerberosReceiverSecurityToken), typeof(KerberosRequestorSecurityToken) }; } 304protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(SamlSecurityToken) }; } 349protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(UserNameSecurityToken) }; } 493protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(WrappedKeySecurityToken) }; } 612protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(X509SecurityToken), typeof(X509WindowsSecurityToken) }; }
System\ServiceModel\Security\WSTrust.cs (1)
90protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(BinarySecretSecurityToken) }; }
1 reference to GetTokenTypesCore
System.ServiceModel (1)
System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
501this.tokenTypes = GetTokenTypesCore();