ULARGE_INTEGER.QuadPart Field
Namespace: Microsoft.VisualStudio.OLE.Interop
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
Syntax
'Declaration
Public QuadPart As ULong
public ulong QuadPart
public:
unsigned long long QuadPart
val mutable QuadPart: uint64
public var QuadPart : ulong
Examples
// rewind an IStream to the beginning
LARGE_INTEGER offset = new LARGE_INTEGER();
offset.QuadPart = 0;
ULARGE_INTEGER[] resultingPosition = new ULARGE_INTEGER[1];
resultingPosition[0] = new ULARGE_INTEGER();
_stream.Seek(offset, (uint) SeekOrigin.Begin, resultingPosition);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.