89 lines
3.6 KiB
C#
89 lines
3.6 KiB
C#
|
//------------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.ServiceModel.Configuration
|
||
|
{
|
||
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
using System.Configuration;
|
||
|
using System.Runtime;
|
||
|
using System.ServiceModel;
|
||
|
using System.ServiceModel.Channels;
|
||
|
|
||
|
public sealed partial class NamedPipeConnectionPoolSettingsElement : ServiceModelConfigurationElement
|
||
|
{
|
||
|
public NamedPipeConnectionPoolSettingsElement()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[ConfigurationProperty(ConfigurationStrings.GroupName, DefaultValue = ConnectionOrientedTransportDefaults.ConnectionPoolGroupName)]
|
||
|
[StringValidator(MinLength = 0)]
|
||
|
public string GroupName
|
||
|
{
|
||
|
get { return (string)base[ConfigurationStrings.GroupName]; }
|
||
|
set
|
||
|
{
|
||
|
if (String.IsNullOrEmpty(value))
|
||
|
{
|
||
|
value = String.Empty;
|
||
|
}
|
||
|
base[ConfigurationStrings.GroupName] = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[ConfigurationProperty(ConfigurationStrings.IdleTimeout, DefaultValue = ConnectionOrientedTransportDefaults.IdleTimeoutString)]
|
||
|
[TypeConverter(typeof(TimeSpanOrInfiniteConverter))]
|
||
|
[ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)]
|
||
|
public TimeSpan IdleTimeout
|
||
|
{
|
||
|
get { return (TimeSpan)base[ConfigurationStrings.IdleTimeout]; }
|
||
|
set { base[ConfigurationStrings.IdleTimeout] = value; }
|
||
|
}
|
||
|
|
||
|
[ConfigurationProperty(ConfigurationStrings.MaxOutboundConnectionsPerEndpoint, DefaultValue = ConnectionOrientedTransportDefaults.MaxOutboundConnectionsPerEndpoint)]
|
||
|
[IntegerValidator(MinValue = 0)]
|
||
|
public int MaxOutboundConnectionsPerEndpoint
|
||
|
{
|
||
|
get { return (int)base[ConfigurationStrings.MaxOutboundConnectionsPerEndpoint]; }
|
||
|
set { base[ConfigurationStrings.MaxOutboundConnectionsPerEndpoint] = value; }
|
||
|
}
|
||
|
|
||
|
internal void ApplyConfiguration(NamedPipeConnectionPoolSettings settings)
|
||
|
{
|
||
|
if (null == settings)
|
||
|
{
|
||
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("settings");
|
||
|
}
|
||
|
|
||
|
settings.GroupName = this.GroupName;
|
||
|
settings.IdleTimeout = this.IdleTimeout;
|
||
|
settings.MaxOutboundConnectionsPerEndpoint = this.MaxOutboundConnectionsPerEndpoint;
|
||
|
}
|
||
|
|
||
|
internal void InitializeFrom(NamedPipeConnectionPoolSettings settings)
|
||
|
{
|
||
|
if (null == settings)
|
||
|
{
|
||
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("settings");
|
||
|
}
|
||
|
|
||
|
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.GroupName, settings.GroupName);
|
||
|
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.IdleTimeout, settings.IdleTimeout);
|
||
|
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxOutboundConnectionsPerEndpoint, settings.MaxOutboundConnectionsPerEndpoint);
|
||
|
}
|
||
|
|
||
|
internal void CopyFrom(NamedPipeConnectionPoolSettingsElement source)
|
||
|
{
|
||
|
if (source == null)
|
||
|
{
|
||
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("source");
|
||
|
}
|
||
|
|
||
|
this.GroupName = source.GroupName;
|
||
|
this.IdleTimeout = source.IdleTimeout;
|
||
|
this.MaxOutboundConnectionsPerEndpoint = source.MaxOutboundConnectionsPerEndpoint;
|
||
|
}
|
||
|
}
|
||
|
}
|