Ends a pending asynchronous request to execute a transaction.

Namespace: ININ.IceLib.Data.TransactionBuilder
Assembly: ININ.IceLib.Data.TransactionBuilder (in ININ.IceLib.Data.TransactionBuilder.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public bool EndExecute(
	IAsyncResult result,
	out TransactionData data
)
Visual Basic
Public Function EndExecute ( _
	result As IAsyncResult, _
	<OutAttribute> ByRef data As TransactionData _
) As Boolean

Parameters

result
Type: System..::..IAsyncResult
An IAsyncResult that stores state information and any user defined data for this asynchronous operation.
data
Type: ININ.IceLib.Data.TransactionBuilder..::..TransactionData%
A TransactionData object that holds information about the transaction being executed.

Return Value

trueTruetruetrue (True in Visual Basic) if the transaction was executed successfully; falseFalsefalsefalse (False in Visual Basic) otherwise.

Remarks

Call this to end an asynchronous operation.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionA parameter is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::..ArgumentExceptionThe actual type of the result parameter is not the appropriate type for this operation.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also