2 writes to securityBindingElement
System.ServiceModel (2)
System\ServiceModel\Security\SecurityProtocolFactory.cs (2)
157
this.
securityBindingElement
= (SecurityBindingElement) factory.securityBindingElement.Clone();
521
this.
securityBindingElement
= value;
10 references to securityBindingElement
System.ServiceModel (10)
System\ServiceModel\Security\SecurityProtocolFactory.cs (10)
155
if (factory.
securityBindingElement
!= null)
157
this.securityBindingElement = (SecurityBindingElement) factory.
securityBindingElement
.Clone();
513
get { return this.
securityBindingElement
; }
881
requirement.SecurityBindingElement = this.
securityBindingElement
;
999
AddSupportingTokenAuthenticators(this.
securityBindingElement
.EndpointSupportingTokenParameters, false, (IList<SupportingTokenAuthenticatorSpecification>)this.channelSupportingTokenAuthenticatorSpecification);
1000
AddSupportingTokenAuthenticators(this.
securityBindingElement
.OptionalEndpointSupportingTokenParameters, true, (IList<SupportingTokenAuthenticatorSpecification>)this.channelSupportingTokenAuthenticatorSpecification);
1001
foreach (string action in this.
securityBindingElement
.OperationSupportingTokenParameters.Keys)
1004
AddSupportingTokenAuthenticators(this.
securityBindingElement
.OperationSupportingTokenParameters[action], false, authenticatorSpecList);
1007
foreach (string action in this.
securityBindingElement
.OptionalOperationSupportingTokenParameters.Keys)
1020
this.AddSupportingTokenAuthenticators(this.
securityBindingElement
.OptionalOperationSupportingTokenParameters[action], true, authenticatorSpecList);