| OperationAsyncCallbackLkData Delegate |
A delegate for the method that will be executed at the end of the asynchronous call. It has two arguments.
Namespace:
LinkarClient
Assemblies:
LinkarClientCore (in LinkarClientCore.dll) Version: 2.1.0.0
LinkarClientMono (in LinkarClientMono.dll) Version: 2.1.0.0 (2.1.0.0)
LinkarClient (in LinkarClient.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public delegate void OperationAsyncCallbackLkData(
LkData lkData,
Exception ex
)
Public Delegate Sub OperationAsyncCallbackLkData (
lkData As LkData,
ex As Exception
)
public delegate void OperationAsyncCallbackLkData(
LkData^ lkData,
Exception^ ex
)
type OperationAsyncCallbackLkData =
delegate of
lkData : LkData *
ex : Exception -> unit
Parameters
- lkData
- Type: LinkarCommonLkData
An object of type LkData with the result of the asynchronous operation.
- ex
- Type: SystemException
An object of type Exception with the content of the error produced. If there is no error, this argument will be null.
See Also