RequestContext.Close Method

Definition

Closes the operation that is replying to the request context associated with the current context.

Overloads

Close()

When overridden in a derived class, closes the operation that is replying to the request context associated with the current context.

Close(TimeSpan)

When overridden in a derived class, closes the operation that is replying to the request context associated with the current context within a specified interval of time.

Close()

Source:
RequestContext.cs
Source:
RequestContext.cs
Source:
RequestContext.cs

When overridden in a derived class, closes the operation that is replying to the request context associated with the current context.

public:
 abstract void Close();
public abstract void Close ();
abstract member Close : unit -> unit
Public MustOverride Sub Close ()

Applies to

Close(TimeSpan)

Source:
RequestContext.cs
Source:
RequestContext.cs
Source:
RequestContext.cs

When overridden in a derived class, closes the operation that is replying to the request context associated with the current context within a specified interval of time.

public:
 abstract void Close(TimeSpan timeout);
public abstract void Close (TimeSpan timeout);
abstract member Close : TimeSpan -> unit
Public MustOverride Sub Close (timeout As TimeSpan)

Parameters

timeout
TimeSpan

The TimeSpan that specifies the interval of time within which the reply operation associated with the current context must close.

Notes to Implementers

The operation should throw a TimeoutException if the specified timeout is exceeded before it completes.

Applies to