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