3 instantiations of ClaimTypeElement
System.ServiceModel (3)
System\ServiceModel\Configuration\FederatedMessageSecurityOverHttpElement.cs (1)
171
ClaimTypeElement element = new
ClaimTypeElement
(claimTypeRequirement.ClaimType, claimTypeRequirement.IsOptional);
System\ServiceModel\Configuration\IssuedTokenParametersElement.cs (2)
192
this.ClaimTypeRequirements.Add(new
ClaimTypeElement
(c.ClaimType, c.IsOptional));
266
this.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
))]
13
public sealed class ClaimTypeElementCollection : ServiceModelConfigurationElementCollection<
ClaimTypeElement
>
25
ClaimTypeElement
claimElement = (
ClaimTypeElement
)element;
System\ServiceModel\Configuration\FederatedMessageSecurityOverHttpElement.cs (2)
124
foreach (
ClaimTypeElement
claimType in this.ClaimTypeRequirements)
171
ClaimTypeElement
element = new ClaimTypeElement(claimTypeRequirement.ClaimType, claimTypeRequirement.IsOptional);
System\ServiceModel\Configuration\IssuedTokenParametersElement.cs (2)
139
foreach (
ClaimTypeElement
c in this.ClaimTypeRequirements)
190
foreach (
ClaimTypeElement
c in source.ClaimTypeRequirements)