3 instantiations of ClaimTypeElement
System.ServiceModel (3)
System\ServiceModel\Configuration\FederatedMessageSecurityOverHttpElement.cs (1)
171ClaimTypeElement element = new ClaimTypeElement(claimTypeRequirement.ClaimType, claimTypeRequirement.IsOptional);
System\ServiceModel\Configuration\IssuedTokenParametersElement.cs (2)
192this.ClaimTypeRequirements.Add(new ClaimTypeElement(c.ClaimType, c.IsOptional)); 266this.ClaimTypeRequirements.Add(new ClaimTypeElement(c.ClaimType, c.IsOptional));
8 references to ClaimTypeElement
System.ServiceModel (8)
System\ServiceModel\Configuration\ClaimTypeElementCollection.cs (4)
12[ConfigurationCollection(typeof(ClaimTypeElement))] 13public sealed class ClaimTypeElementCollection : ServiceModelConfigurationElementCollection<ClaimTypeElement> 25ClaimTypeElement claimElement = (ClaimTypeElement)element;
System\ServiceModel\Configuration\FederatedMessageSecurityOverHttpElement.cs (2)
124foreach (ClaimTypeElement claimType in this.ClaimTypeRequirements) 171ClaimTypeElement element = new ClaimTypeElement(claimTypeRequirement.ClaimType, claimTypeRequirement.IsOptional);
System\ServiceModel\Configuration\IssuedTokenParametersElement.cs (2)
139foreach (ClaimTypeElement c in this.ClaimTypeRequirements) 190foreach (ClaimTypeElement c in source.ClaimTypeRequirements)