System.IO.Error.GetExceptionForLastWin32DriveError C# (CSharp) Méthode

GetExceptionForLastWin32DriveError() private méthode

private GetExceptionForLastWin32DriveError ( String driveName ) : Exception
driveName String
Résultat Exception
        internal static Exception GetExceptionForLastWin32DriveError(String driveName)
        {
            int errorCode = Marshal.GetLastWin32Error();
            return GetExceptionForWin32DriveError(errorCode, driveName);
        }