Note: This documentation is preliminary and is subject to change.
Retrieves the position of the capture and read cursors in the CaptureBuffer object.
Definition
Visual Basic .NET
Public Sub GetCurrentPosition( _ ByRef currentCapturePosition As Integer, _ ByRef currentReadPosition As Integer _ )
C#
public voidGetCurrentPosition( out intcurrentCapturePosition, out intcurrentReadPosition );
Managed C++
public: voidGetCurrentPosition( int *currentCapturePosition, int *currentReadPosition );
JScript .NET
public function GetCurrentPosition( currentCapturePosition : int, currentReadPosition : int );
Parameters
currentCapturePosition
System.Int32. An integer that receives the offset, in bytes, of the capture cursor position in the capture buffer.
currentReadPosition
System.Int32. An integer that receives the offset, in bytes, of the read cursor position in the capture buffer.
Remarks
The capture cursor is ahead of the read cursor. The data after the read position, up to and including the capture position, is not necessarily valid data.