ImageExtensionsEndConvertPixelFormat Method

Waits for the pending asynchronous operation started by the BeginConvertPixelFormat methods to complete. In .NET Framework 4.0 and above you can use the ConvertPixelFormatAsync methods instead.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
C#
public static Bitmap? EndConvertPixelFormat(
	this IAsyncResult asyncResult
)

Parameters

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

Return Value

Bitmap
A Bitmap instance that is the result of the operation, or , if the operation was canceled and the ThrowIfCanceled property of the asyncConfig parameter was .

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).

See Also