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
- RepeatButton.cs
- GridViewAutoFormat.cs
- XmlElementElement.cs
- XmlValueConverter.cs
- DoWorkEventArgs.cs
- EnvelopedSignatureTransform.cs
- RowUpdatingEventArgs.cs
- DbProviderFactories.cs
- ControlCollection.cs
- DialogResultConverter.cs
- CustomAttribute.cs
- OciEnlistContext.cs
- ShortcutKeysEditor.cs
- TrackingProfileDeserializationException.cs
- StorageModelBuildProvider.cs
- DataControlButton.cs
- RequestCachePolicy.cs
- Control.cs
- EntityProviderServices.cs
- AdornerHitTestResult.cs
- EditorBrowsableAttribute.cs
- ReflectEventDescriptor.cs
- DataTableTypeConverter.cs
- XmlDigitalSignatureProcessor.cs
- DataReaderContainer.cs
- ComponentDispatcherThread.cs
- KeyValueConfigurationElement.cs
- _FixedSizeReader.cs
- DependencyObject.cs
- XmlSchemaInferenceException.cs
- TypeReference.cs
- ModelItemCollection.cs
- OleDbConnectionInternal.cs
- RuntimeArgumentHandle.cs
- CheckBoxField.cs
- GroupDescription.cs
- ApplicationException.cs
- ObjectStateFormatter.cs
- KeyNotFoundException.cs
- Material.cs
- WindowsListViewSubItem.cs
- MemberMaps.cs
- TransformerTypeCollection.cs
- RectKeyFrameCollection.cs
- AppModelKnownContentFactory.cs
- MappingModelBuildProvider.cs
- baseshape.cs
- AttributeCollection.cs
- AssemblyAttributesGoHere.cs
- RuntimeConfig.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- ObjectStateEntryDbDataRecord.cs
- BookmarkEventArgs.cs
- Parameter.cs
- QualifiedCellIdBoolean.cs
- Label.cs
- TypeElement.cs
- RubberbandSelector.cs
- UpdateProgress.cs
- BooleanFunctions.cs
- SmtpNegotiateAuthenticationModule.cs
- DataBindingValueUIHandler.cs
- FigureParagraph.cs
- TextUtf8RawTextWriter.cs
- GenericArgumentsUpdater.cs
- DurableInstance.cs
- FieldBuilder.cs
- Encoder.cs
- _TimerThread.cs
- ProfileProvider.cs
- Column.cs
- CompoundFileIOPermission.cs
- OutputCacheProfileCollection.cs
- CustomError.cs
- SoapIncludeAttribute.cs
- ToggleProviderWrapper.cs
- CustomExpressionEventArgs.cs
- ArgIterator.cs
- NumericExpr.cs
- DatatypeImplementation.cs
- TreeNodeEventArgs.cs
- PermissionSet.cs
- IEnumerable.cs
- TextServicesCompartmentEventSink.cs
- XmlNamespaceManager.cs
- DataGridGeneralPage.cs
- FixUpCollection.cs
- WebServiceData.cs
- ModelItemCollection.cs
- VirtualizingStackPanel.cs
- QueryOperationResponseOfT.cs
- UIElementAutomationPeer.cs
- SingleSelectRootGridEntry.cs
- FormsAuthenticationConfiguration.cs
- ContactManager.cs
- userdatakeys.cs
- CookieParameter.cs
- CacheManager.cs
- SiblingIterators.cs
- OdbcEnvironmentHandle.cs