| WcfLogReceiverClientBeginClose Method (TimeSpan, AsyncCallback, Object) |
Begins an asynchronous operation to close a communication object with a specified timeout.
Namespace:
NLog.LogReceiverService
Assembly:
NLog.Wcf (in NLog.Wcf.dll) Version: 5.2.1+bb45a7652322449cc5d22f0e8ecf7e119c124ca2
Syntax public IAsyncResult BeginClose(
TimeSpan timeout,
AsyncCallback callback,
Object state
)
Public Function BeginClose (
timeout As TimeSpan,
callback As AsyncCallback,
state As Object
) As IAsyncResult
Dim instance As WcfLogReceiverClient
Dim timeout As TimeSpan
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
returnValue = instance.BeginClose(timeout,
callback, state)
abstract BeginClose :
timeout : TimeSpan *
callback : AsyncCallback *
state : Object -> IAsyncResult
override BeginClose :
timeout : TimeSpan *
callback : AsyncCallback *
state : Object -> IAsyncResult
Parameters
- timeout
- Type: SystemTimeSpan
The Timespan that specifies how long the send operation has to complete before timing out. - callback
- Type: SystemAsyncCallback
The AsyncCallback delegate that receives notification of the completion of the asynchronous close operation. - state
- Type: SystemObject
An object, specified by the application, that contains state information associated with the asynchronous close operation.
Return Value
Type:
IAsyncResult
The
IAsyncResult that references the asynchronous close operation.
Implements
ICommunicationObjectBeginClose(TimeSpan, AsyncCallback, Object)Exceptions Exception | Condition |
---|
CommunicationObjectFaultedException | BeginClose was called on an object in the Faulted state. |
TimeoutException | The specified timeout elapsed before the ICommunicationObject was able to close gracefully. |
See Also