RequestContext.Close Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.