Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / TcpConnectionPoolSettings.cs / 1 / TcpConnectionPoolSettings.cs
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------
namespace System.ServiceModel.Channels
{
public sealed class TcpConnectionPoolSettings
{
string groupName;
TimeSpan idleTimeout;
TimeSpan leaseTimeout;
int maxOutboundConnectionsPerEndpoint;
internal TcpConnectionPoolSettings()
{
groupName = ConnectionOrientedTransportDefaults.ConnectionPoolGroupName;
idleTimeout = ConnectionOrientedTransportDefaults.IdleTimeout;
leaseTimeout = TcpTransportDefaults.ConnectionLeaseTimeout;
maxOutboundConnectionsPerEndpoint = ConnectionOrientedTransportDefaults.MaxOutboundConnectionsPerEndpoint;
}
internal TcpConnectionPoolSettings(TcpConnectionPoolSettings tcp)
{
this.groupName = tcp.groupName;
this.idleTimeout = tcp.idleTimeout;
this.leaseTimeout = tcp.leaseTimeout;
this.maxOutboundConnectionsPerEndpoint = tcp.maxOutboundConnectionsPerEndpoint;
}
public string GroupName
{
get { return this.groupName; }
set
{
if (value == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
this.groupName = value;
}
}
public TimeSpan IdleTimeout
{
get { return this.idleTimeout; }
set
{
if (value < TimeSpan.Zero)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value,
SR.GetString(SR.SFxTimeoutOutOfRange0)));
}
if (TimeoutHelper.IsTooLarge(value))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value,
SR.GetString(SR.SFxTimeoutOutOfRangeTooBig)));
}
this.idleTimeout = value;
}
}
public TimeSpan LeaseTimeout
{
get { return this.leaseTimeout; }
set
{
if (value < TimeSpan.Zero)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value,
SR.GetString(SR.SFxTimeoutOutOfRange0)));
}
if (TimeoutHelper.IsTooLarge(value))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value,
SR.GetString(SR.SFxTimeoutOutOfRangeTooBig)));
}
this.leaseTimeout = value;
}
}
public int MaxOutboundConnectionsPerEndpoint
{
get { return this.maxOutboundConnectionsPerEndpoint; }
set
{
if (value < 0)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value,
SR.GetString(SR.ValueMustBeNonNegative)));
this.maxOutboundConnectionsPerEndpoint = value;
}
}
internal TcpConnectionPoolSettings Clone()
{
return new TcpConnectionPoolSettings(this);
}
internal bool IsMatch(TcpConnectionPoolSettings tcp)
{
if (this.groupName != tcp.groupName)
return false;
if (this.idleTimeout != tcp.idleTimeout)
return false;
if (this.leaseTimeout != tcp.leaseTimeout)
return false;
if (this.maxOutboundConnectionsPerEndpoint != tcp.maxOutboundConnectionsPerEndpoint)
return false;
return true;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RawStylusActions.cs
- StringDictionary.cs
- SingleAnimationUsingKeyFrames.cs
- SystemResourceKey.cs
- StringDictionaryWithComparer.cs
- SafeNativeMethods.cs
- AsnEncodedData.cs
- AttachmentService.cs
- TextTreeExtractElementUndoUnit.cs
- ContentPresenter.cs
- LinkClickEvent.cs
- ApplicationDirectory.cs
- Predicate.cs
- EntityDataSourceContextCreatedEventArgs.cs
- unitconverter.cs
- CodeGotoStatement.cs
- RangeValidator.cs
- ListViewGroupItemCollection.cs
- DataGridTableCollection.cs
- PriorityItem.cs
- WpfMemberInvoker.cs
- DaylightTime.cs
- SamlDelegatingWriter.cs
- MessageQueueEnumerator.cs
- InfoCardTraceRecord.cs
- DataTableExtensions.cs
- EncoderExceptionFallback.cs
- UnicodeEncoding.cs
- Control.cs
- SqlCacheDependency.cs
- ProcessHostFactoryHelper.cs
- RegistrationServices.cs
- EntityDataSourceDataSelectionPanel.cs
- AuthenticationException.cs
- NameValueConfigurationCollection.cs
- GeometryModel3D.cs
- SortKey.cs
- ObjectStateEntry.cs
- OleDbPropertySetGuid.cs
- CopyAttributesAction.cs
- Error.cs
- NetNamedPipeSecurity.cs
- MenuItemBinding.cs
- ReflectionServiceProvider.cs
- DataGridViewUtilities.cs
- DataGridViewCheckBoxColumn.cs
- DataGrid.cs
- TypePropertyEditor.cs
- odbcmetadatafactory.cs
- metadatamappinghashervisitor.cs
- PointLightBase.cs
- RTTrackingProfile.cs
- FastEncoder.cs
- SmiGettersStream.cs
- NetNamedPipeSecurity.cs
- DefaultObjectMappingItemCollection.cs
- Pens.cs
- ListControlStringCollectionEditor.cs
- RangeValidator.cs
- Byte.cs
- SerializerWriterEventHandlers.cs
- ConfigXmlWhitespace.cs
- ToolStripMenuItem.cs
- DocumentReferenceCollection.cs
- SafeFileMappingHandle.cs
- SqlGenericUtil.cs
- cookieexception.cs
- CompressEmulationStream.cs
- CallbackValidatorAttribute.cs
- GenericUriParser.cs
- ScriptManagerProxy.cs
- PreloadedPackages.cs
- DoubleLinkListEnumerator.cs
- wmiprovider.cs
- ConfigurationValues.cs
- RawStylusInput.cs
- MemberPathMap.cs
- MimeAnyImporter.cs
- AssemblyInfo.cs
- TrustLevel.cs
- RemotingAttributes.cs
- BlurEffect.cs
- RoleGroupCollection.cs
- SwitchElementsCollection.cs
- XmlBindingWorker.cs
- NativeMethodsOther.cs
- DataGridState.cs
- EncoderNLS.cs
- SqlMethodAttribute.cs
- DefaultPropertyAttribute.cs
- DataGridBoolColumn.cs
- OleDbInfoMessageEvent.cs
- ScriptingProfileServiceSection.cs
- DBParameter.cs
- URLIdentityPermission.cs
- AlternationConverter.cs
- SequenceDesigner.cs
- FormatStringEditor.cs
- XmlTextWriter.cs
- CultureTableRecord.cs