.NET Framework Class Library
ServiceHostBase..::.CloseTimeout Property

Gets or sets the interval of time allowed for the service host to close.

Namespace:  System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
Syntax

Visual Basic (Declaration)
Public Property CloseTimeout As TimeSpan
Visual Basic (Usage)
Dim instance As ServiceHostBase
Dim value As TimeSpan

value = instance.CloseTimeout

instance.CloseTimeout = value
C#
public TimeSpan CloseTimeout { get; set; }
Visual C++
public:
property TimeSpan CloseTimeout {
    TimeSpan get ();
    void set (TimeSpan value);
}
JScript
public function get CloseTimeout () : TimeSpan
public function set CloseTimeout (value : TimeSpan)

Property Value

Type: System..::.TimeSpan
The Timespan that specifies the interval of time allowed for the service host to close.
Exceptions

ExceptionCondition
ArgumentOutOfRangeException

The value, in milliseconds, is less than zero or is larger than MaxValue (2,147,483,647 or, in hexadecimal notation, 0X7FFFFFFF).

InvalidOperationException

The host is in an Opening or Closing state and cannot be modified.

ObjectDisposedException

The host is already in a Closed state and cannot be modified.

CommunicationObjectFaultedException

The host is in a Faulted state and cannot be modified.

Examples

C#
TimeSpan closeTimeout = hostDefault.CloseTimeout;
.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Tags :


Page view tracker