PinnedBuffer Constructor (Object, Int32, Int32) |
Initializes a new instance with an existing object and pins memory
position.
Namespace:
Arsenal.ImageMounter.IO
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public PinnedBuffer(
Object instance,
int toalObjectSize,
int byteOffset
)
Public Sub New (
instance As Object,
toalObjectSize As Integer,
byteOffset As Integer
)
public:
PinnedBuffer(
Object^ instance,
int toalObjectSize,
int byteOffset
)
new :
instance : Object *
toalObjectSize : int *
byteOffset : int -> PinnedBuffer
Parameters
- instance
- Type: SystemObject
Existing object to pin in memory. - toalObjectSize
- Type: SystemInt32
Total number of bytes used by obj in unmanaged memory - byteOffset
- Type: SystemInt32
Byte offset into unmanaged memory where this instance should start
See Also