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
- BigInt.cs
- FontSource.cs
- _StreamFramer.cs
- DragDrop.cs
- ContentElementAutomationPeer.cs
- BasicBrowserDialog.designer.cs
- ReplyChannelAcceptor.cs
- SymbolPair.cs
- HostingPreferredMapPath.cs
- ProviderConnectionPointCollection.cs
- rsa.cs
- CodeValidator.cs
- RenderTargetBitmap.cs
- AmbientProperties.cs
- Boolean.cs
- WinEventWrap.cs
- EntityContainerAssociationSet.cs
- XmlValidatingReaderImpl.cs
- HashStream.cs
- SqlConnectionStringBuilder.cs
- GeneralTransform3D.cs
- HelpKeywordAttribute.cs
- ClrProviderManifest.cs
- PointConverter.cs
- InternalEnumValidatorAttribute.cs
- VBIdentifierNameEditor.cs
- HttpDebugHandler.cs
- TreeViewBindingsEditor.cs
- JsonDeserializer.cs
- SafeViewOfFileHandle.cs
- DocumentPaginator.cs
- XomlSerializationHelpers.cs
- DecoderFallback.cs
- MappingSource.cs
- SiteMapPathDesigner.cs
- StylusCaptureWithinProperty.cs
- AsmxEndpointPickerExtension.cs
- Drawing.cs
- WindowsFormsHost.cs
- MethodBuilderInstantiation.cs
- AppDomainAttributes.cs
- ConfigurationLockCollection.cs
- NameValueFileSectionHandler.cs
- SafeCertificateStore.cs
- ImmutableCollection.cs
- TreeNode.cs
- EventLogTraceListener.cs
- Thickness.cs
- SafeRightsManagementQueryHandle.cs
- HeaderCollection.cs
- MsdtcClusterUtils.cs
- BindingWorker.cs
- ProviderConnectionPointCollection.cs
- HtmlContainerControl.cs
- TabRenderer.cs
- QueryModel.cs
- BindableAttribute.cs
- Size.cs
- SoapFormatter.cs
- FixedDSBuilder.cs
- WorkflowMarkupElementEventArgs.cs
- RuleValidation.cs
- DuplicateMessageDetector.cs
- StructuredTypeEmitter.cs
- ClonableStack.cs
- SqlRetyper.cs
- DocumentXmlWriter.cs
- ListViewInsertEventArgs.cs
- CollectionViewGroupInternal.cs
- ScriptIgnoreAttribute.cs
- RemotingConfigParser.cs
- LinkClickEvent.cs
- WebRequest.cs
- MarkupObject.cs
- Property.cs
- GreenMethods.cs
- ExpressionLexer.cs
- FontStyles.cs
- TimeSpanHelper.cs
- ToolTip.cs
- ToolBarTray.cs
- LambdaCompiler.Expressions.cs
- ScriptResourceInfo.cs
- LocalFileSettingsProvider.cs
- KeyValueInternalCollection.cs
- ProfileBuildProvider.cs
- SendMessageRecord.cs
- Debug.cs
- UnsafeNativeMethods.cs
- BinaryFormatter.cs
- DataPagerFieldItem.cs
- TextPointer.cs
- IERequestCache.cs
- Pens.cs
- Part.cs
- WebPartDeleteVerb.cs
- TextTreeUndoUnit.cs
- XmlIlVisitor.cs
- ConnectionsZoneAutoFormat.cs
- MatrixConverter.cs