2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.ServiceModel.Configuration
|
|
|
|
{
|
|
|
|
using System.Configuration;
|
|
|
|
using System.ServiceModel.Channels;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.Security;
|
|
|
|
using System.Security.Authentication.ExtendedProtection.Configuration;
|
|
|
|
using System.ServiceModel;
|
|
|
|
using System.ServiceModel.Security;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Security.Authentication;
|
|
|
|
|
|
|
|
public sealed partial class TcpTransportSecurityElement : ServiceModelConfigurationElement
|
|
|
|
{
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.ClientCredentialType, DefaultValue = TcpTransportSecurity.DefaultClientCredentialType)]
|
|
|
|
[ServiceModelEnumValidator(typeof(TcpClientCredentialTypeHelper))]
|
|
|
|
public TcpClientCredentialType ClientCredentialType
|
|
|
|
{
|
|
|
|
get { return (TcpClientCredentialType)base[ConfigurationStrings.ClientCredentialType]; }
|
|
|
|
set { base[ConfigurationStrings.ClientCredentialType] = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.ProtectionLevel, DefaultValue = TcpTransportSecurity.DefaultProtectionLevel)]
|
|
|
|
[ServiceModelEnumValidator(typeof(ProtectionLevelHelper))]
|
|
|
|
public ProtectionLevel ProtectionLevel
|
|
|
|
{
|
|
|
|
get { return (ProtectionLevel)base[ConfigurationStrings.ProtectionLevel]; }
|
|
|
|
set { base[ConfigurationStrings.ProtectionLevel] = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.ExtendedProtectionPolicy)]
|
|
|
|
public ExtendedProtectionPolicyElement ExtendedProtectionPolicy
|
|
|
|
{
|
|
|
|
get { return (ExtendedProtectionPolicyElement)base[ConfigurationStrings.ExtendedProtectionPolicy]; }
|
|
|
|
private set { base[ConfigurationStrings.ExtendedProtectionPolicy] = value; }
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:04:36 +00:00
|
|
|
[ConfigurationProperty(ConfigurationStrings.SslProtocols, DefaultValue = TransportDefaults.OldDefaultSslProtocols)]
|
2016-08-03 10:59:49 +00:00
|
|
|
[ServiceModelEnumValidator(typeof(SslProtocolsHelper))]
|
|
|
|
public SslProtocols SslProtocols
|
|
|
|
{
|
|
|
|
get { return (SslProtocols)base[ConfigurationStrings.SslProtocols]; }
|
|
|
|
private set { base[ConfigurationStrings.SslProtocols] = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void ApplyConfiguration(TcpTransportSecurity security)
|
|
|
|
{
|
|
|
|
if (security == null)
|
|
|
|
{
|
|
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security");
|
|
|
|
}
|
|
|
|
security.ClientCredentialType = this.ClientCredentialType;
|
|
|
|
security.ProtectionLevel = this.ProtectionLevel;
|
|
|
|
security.ExtendedProtectionPolicy = ChannelBindingUtility.BuildPolicy(this.ExtendedProtectionPolicy);
|
|
|
|
security.SslProtocols = this.SslProtocols;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void InitializeFrom(TcpTransportSecurity security)
|
|
|
|
{
|
|
|
|
if (security == null)
|
|
|
|
{
|
|
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security");
|
|
|
|
}
|
|
|
|
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ClientCredentialType, security.ClientCredentialType);
|
|
|
|
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProtectionLevel, security.ProtectionLevel);
|
|
|
|
ChannelBindingUtility.InitializeFrom(security.ExtendedProtectionPolicy, this.ExtendedProtectionPolicy);
|
|
|
|
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.SslProtocols, security.SslProtocols);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|