Impact Acquire SDK .NET
|
A class containing a reference to a bitmap created from a request. More...
Public Member Functions | |
void | Dispose () |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. | |
Properties | |
System.Drawing.Bitmap | bitmap [get] |
A reference to the System.Drawing.Bitmap contained in this mv.impact.acquire.RequestBitmapData instance. | |
A class containing a reference to a bitmap created from a request.
The main purpose of this class is to serve as a reference counted lock in order to allow an application to access and hold one or multiple references to the image memory. Calling mv.impact.acquire.Request.unlock will raise an InvalidOperationException as long as at least one instance of mv.impact.acquire.RequestBitmapData is active. Therefore, whenever a mv.impact.acquire.RequestBitmapData instance is no longer needed, mv.impact.acquire.RequestBitmapData.Dispose must be called. Encapsulating bitmap access scopes with a using statement is recommended (whenever possible):
|
inline |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
See the framework's documentation about the System.IDisposable interface for more information.
|
get |
A reference to the System.Drawing.Bitmap contained in this mv.impact.acquire.RequestBitmapData instance.
The support for System.Drawing.Bitmap is limited! Refer to Efficiently create System.Drawing.Bitmap instances for details!