4 writes to ProtectionLevel
System.ServiceModel (4)
System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
156
windowsBindingElement.
ProtectionLevel
= (ProtectionLevel)Enum.Parse(typeof(ProtectionLevel), protectionLevelString);
System\ServiceModel\Configuration\WindowsStreamSecurityElement.cs (1)
33
windowsBindingElement.
ProtectionLevel
= this.ProtectionLevel;
System\ServiceModel\NamedPipeTransportSecurity.cs (1)
40
result.
ProtectionLevel
= this.protectionLevel;
System\ServiceModel\TcpTransportSecurity.cs (1)
143
result.
ProtectionLevel
= this.protectionLevel;
6 references to ProtectionLevel
System.ServiceModel (6)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
348
instance.SetProperty(AdministrationStrings.ProtectionLevel, specificElement.
ProtectionLevel
.ToString());
System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
172
protectionLevelElement.AppendChild(document.CreateTextNode(this.
ProtectionLevel
.ToString()));
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (1)
39
this.protectionLevel = bindingElement.
ProtectionLevel
;
System\ServiceModel\Configuration\WindowsStreamSecurityElement.cs (1)
64
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProtectionLevel, windowsBindingElement.
ProtectionLevel
);
System\ServiceModel\NamedPipeTransportSecurity.cs (1)
46
transportSecurity.protectionLevel = wssbe.
ProtectionLevel
;
System\ServiceModel\TcpTransportSecurity.cs (1)
155
transportSecurity.ProtectionLevel = ((WindowsStreamSecurityBindingElement)transport).
ProtectionLevel
;