Edit

TimeoutException Class

Definition

The exception that is thrown when a specified timeout has expired.

public ref class TimeoutException : SystemException
public ref class TimeoutException : Exception
public class TimeoutException : SystemException
public class TimeoutException : Exception
type TimeoutException = class
    inherit SystemException
type TimeoutException = class
    inherit Exception
Public Class TimeoutException
Inherits SystemException
Public Class TimeoutException
Inherits Exception
Inheritance
TimeoutException
Inheritance
TimeoutException

Remarks

The TimeoutException class can specify a message to describe the source of the exception. When a method throws this exception, the message is usually "The timeout provided has expired and the operation has not been completed."

This class is used, for example, by the ServiceController class's WaitForStatus member. The operation that can throw the exception is a change of the service's Status property (for example, from Paused to ContinuePending).

Constructors

Name Description
TimeoutException()

Initializes a new instance of the TimeoutException class with no message text.

TimeoutException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the TimeoutException class with the specified serialization information and context.

TimeoutException(String, Exception)

Initializes a new instance of the TimeoutException class with the specified message text and inner exception.

TimeoutException(String)

Initializes a new instance of the TimeoutException class with the specified message text.

Properties

Name Description
Data

Gets a collection of key/value pairs that provide additional user-defined information about the exception.

(Inherited from Exception)
HelpLink

Gets or sets a link to the help file associated with this exception.

(Inherited from Exception)
HResult

Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.

(Inherited from Exception)
InnerException

Gets the Exception instance that caused the current exception.

(Inherited from Exception)
Message

Gets a message that describes the current exception.

(Inherited from Exception)
Source

Gets or sets the name of the application or the object that causes the error.

(Inherited from Exception)
StackTrace

Gets a string representation of the immediate frames on the call stack.

(Inherited from Exception)

Methods

Name Description
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetBaseException()

When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.

(Inherited from Exception)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Creates and returns a string representation of the current exception.

(Inherited from Exception)

Applies to

See also