ParallelHelperEndFor Method
Waits for the pending asynchronous operation started by one of the
BeginFor methods to complete.
In .NET Framework 4.0 and above you can use the
ForAsync methods instead.
Namespace: KGySoft.ThreadingAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool EndFor(
IAsyncResult asyncResult
)
Public Shared Function EndFor (
asyncResult As IAsyncResult
) As Boolean
public:
static bool EndFor(
IAsyncResult^ asyncResult
)
static member EndFor :
asyncResult : IAsyncResult -> bool
- asyncResult IAsyncResult
- The reference to the pending asynchronous request to finish.
Boolean, if the operation completed successfully.
, if the operation has been canceled and
ThrowIfCanceled in the
asyncConfig parameter was set to
.