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