Throws an exception for a Win32 error code.
<SerializableAttribute> _ <HostProtectionAttribute(SecurityAction.LinkDemand, SharedState := True)> _ Public Class Win32Exception _ Inherits ExternalException _ Implements ISerializable
Dim instance As Win32Exception
[SerializableAttribute] [HostProtectionAttribute(SecurityAction.LinkDemand, SharedState = true)] public class Win32Exception : ExternalException, ISerializable
[SerializableAttribute] [HostProtectionAttribute(SecurityAction::LinkDemand, SharedState = true)] public ref class Win32Exception : public ExternalException, ISerializable
public class Win32Exception extends ExternalException implements ISerializable
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: SharedState. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes.
Win32 error codes are translated from their numeric representations into a system message when they are displayed. Use NativeErrorCode to access the numeric representation of the error code associated with this exception. For more information about the error codes, see "Win32 Error Codes" in the Platform SDK documentation at http://msdn.microsoft.com.
The following code example shows how to catch a Win32 exception and interpret its content. The example attempts to start a nonexistent executable, which results in a Win32 exception. Upon catching the exception, the example fetches the respective error message, code, and origin of the exception.
Try Dim myProc As New System.Diagnostics.Process() myProc.StartInfo.FileName = "c:\nonexist.exe" 'Attempting to start a non-existing executable myProc.Start() 'Start the application and assign it to the process component. Catch w As System.ComponentModel.Win32Exception Console.WriteLine(w.Message) Console.WriteLine(w.ErrorCode.ToString()) Console.WriteLine(w.NativeErrorCode.ToString()) Console.WriteLine(w.StackTrace) Console.WriteLine(w.Source) Dim e As New Exception() e = w.GetBaseException() Console.WriteLine(e.Message) End Try
try { System.Diagnostics.Process myProc = new System.Diagnostics.Process(); myProc.StartInfo.FileName = "c:\nonexist.exe"; //Attempting to start a non-existing executable myProc.Start(); //Start the application and assign it to the process component. } catch(Win32Exception w) { Console.WriteLine(w.Message); Console.WriteLine(w.ErrorCode.ToString()); Console.WriteLine(w.NativeErrorCode.ToString()); Console.WriteLine(w.StackTrace); Console.WriteLine(w.Source); Exception e=w.GetBaseException(); Console.WriteLine(e.Message); }
try { System::Diagnostics::Process^ myProc = gcnew System::Diagnostics::Process; //Attempting to start a non-existing executable myProc->StartInfo->FileName = "c:\nonexist.exe"; //Start the application and assign it to the process component. myProc->Start(); } catch ( Win32Exception^ w ) { Console::WriteLine( w->Message ); Console::WriteLine( w->ErrorCode ); Console::WriteLine( w->NativeErrorCode ); Console::WriteLine( w->StackTrace ); Console::WriteLine( w->Source ); Exception^ e = w->GetBaseException(); Console::WriteLine( e->Message ); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune