NativeFileIONtDllTry Method |
Encapsulates call to an ntdll.dll API function that returns an NTSTATUS value indicating
success or error status. If result is zero or positive, this function just passes through
that value as return value. If result is negative indicating an error, it converts error
code to a Win32 error code and throws a managed exception for that error code.
Namespace:
Arsenal.ImageMounter.IO
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public static int NtDllTry(
int result
)
Public Shared Function NtDllTry (
result As Integer
) As Integer
public:
static int NtDllTry(
int result
)
static member NtDllTry :
result : int -> int
Parameters
- result
- Type: SystemInt32
Return code from a ntdll.dll API function call.
Return Value
Type:
Int32See Also