12 references to ProtectionLevel
System.ServiceModel (12)
System\ServiceModel\Configuration\NamedPipeTransportSecurityElement.cs (4)
18[ConfigurationProperty(ConfigurationStrings.ProtectionLevel, DefaultValue = NamedPipeTransportSecurity.DefaultProtectionLevel)] 22get { return (ProtectionLevel)base[ConfigurationStrings.ProtectionLevel]; } 23set { base[ConfigurationStrings.ProtectionLevel] = value; } 41SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProtectionLevel, security.ProtectionLevel);
System\ServiceModel\Configuration\TcpTransportSecurityElement.cs (4)
28[ConfigurationProperty(ConfigurationStrings.ProtectionLevel, DefaultValue = TcpTransportSecurity.DefaultProtectionLevel)] 32get { return (ProtectionLevel)base[ConfigurationStrings.ProtectionLevel]; } 33set { base[ConfigurationStrings.ProtectionLevel] = value; } 70SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProtectionLevel, security.ProtectionLevel);
System\ServiceModel\Configuration\WindowsStreamSecurityElement.cs (4)
20[ConfigurationProperty(ConfigurationStrings.ProtectionLevel, DefaultValue = ConnectionOrientedTransportDefaults.ProtectionLevel)] 24get { return (ProtectionLevel)base[ConfigurationStrings.ProtectionLevel]; } 25set { base[ConfigurationStrings.ProtectionLevel] = value; } 64SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProtectionLevel, windowsBindingElement.ProtectionLevel);