BitmapDataExtensionsEndQuantize Method

Waits for the pending asynchronous operation started by the BeginQuantize method to complete. In .NET Framework 4.0 and above you can use the QuantizeAsync method instead.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public static bool EndQuantize(
	this IAsyncResult asyncResult
)

Parameters

asyncResult  IAsyncResult
The reference to the pending asynchronous request to finish.

Return Value

Boolean
, if the operation completed successfully.
, if the operation has been canceled and the ThrowIfCanceled property in the asyncConfig parameter was set to .

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IAsyncResult. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

InvalidOperationExceptionThe quantizer's Initialize method returned .

See Also