NativeOverlapped Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides an explicit layout that is visible from unmanaged code and that will have the same layout as the Win32 OVERLAPPED structure with additional reserved fields at the end.
public value class NativeOverlapped
public struct NativeOverlapped
[System.Runtime.InteropServices.ComVisible(true)]
public struct NativeOverlapped
type NativeOverlapped = struct
[<System.Runtime.InteropServices.ComVisible(true)>]
type NativeOverlapped = struct
Public Structure NativeOverlapped
- Inheritance
- Attributes
Remarks
The NativeOverlapped .NET Framework value type represents an unmanaged version of the Win32 OVERLAPPED structure. The layout of this structure must be identical to OVERLAPPED. Four additional DWORDs are reserved at the end.
Fields
EventHandle |
Specifies the handle to an event set to the signaled state when the operation is complete. The calling process must set this member either to zero or to a valid event handle before calling any overlapped functions. |
InternalHigh |
Specifies the length of the data transferred. Reserved for operating system use. |
InternalLow |
Specifies a system-dependent status. Reserved for operating system use. |
OffsetHigh |
Specifies the high word of the byte offset at which to start the transfer. |
OffsetLow |
Specifies a file position at which to start the transfer. |