3 writes to channelSupportingTokenProviderSpecification
System.ServiceModel (3)
System\ServiceModel\Security\SecurityProtocol.cs (3)
377this.channelSupportingTokenProviderSpecification = new Collection<SupportingTokenProviderSpecification>(); 408this.channelSupportingTokenProviderSpecification = EmptyTokenProviders; 424this.channelSupportingTokenProviderSpecification =
12 references to channelSupportingTokenProviderSpecification
System.ServiceModel (12)
System\ServiceModel\Security\SecurityProtocol.cs (12)
75return this.channelSupportingTokenProviderSpecification; 178return (this.channelSupportingTokenProviderSpecification == EmptyTokenProviders) ? null : (IList<SupportingTokenProviderSpecification>)this.channelSupportingTokenProviderSpecification; 336foreach (SupportingTokenProviderSpecification spec in this.channelSupportingTokenProviderSpecification) 380AddSupportingTokenProviders(this.factory.SecurityBindingElement.EndpointSupportingTokenParameters, false, (IList<SupportingTokenProviderSpecification>)this.channelSupportingTokenProviderSpecification); 381AddSupportingTokenProviders(this.factory.SecurityBindingElement.OptionalEndpointSupportingTokenParameters, true, (IList<SupportingTokenProviderSpecification>)this.channelSupportingTokenProviderSpecification); 404if (!this.channelSupportingTokenProviderSpecification.IsReadOnly) 406if (this.channelSupportingTokenProviderSpecification.Count == 0) 413foreach (SupportingTokenProviderSpecification tokenProviderSpec in this.channelSupportingTokenProviderSpecification) 425new ReadOnlyCollection<SupportingTokenProviderSpecification>((Collection<SupportingTokenProviderSpecification>)this.channelSupportingTokenProviderSpecification); 449foreach (SupportingTokenProviderSpecification spec in this.channelSupportingTokenProviderSpecification) 469foreach (SupportingTokenProviderSpecification spec in this.channelSupportingTokenProviderSpecification)