FailedToLaunchApplicationException Constructors
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.
Overloads
FailedToLaunchApplicationException() |
Initializes a new instance of the FailedToLaunchApplicationException class. |
FailedToLaunchApplicationException(String) |
Initializes a new instance of the FailedToLaunchApplicationException class by using the provided message. |
FailedToLaunchApplicationException(SerializationInfo, StreamingContext) |
Initializes a new instance of the FailedToLaunchApplicationException class for deserialization. |
FailedToLaunchApplicationException(String, Exception) |
Initializes a new instance of the FailedToLaunchApplicationException class by using the provided message and inner exception. |
FailedToLaunchApplicationException()
Initializes a new instance of the FailedToLaunchApplicationException class.
public:
FailedToLaunchApplicationException();
public FailedToLaunchApplicationException ();
Public Sub New ()
Applies to
FailedToLaunchApplicationException(String)
Initializes a new instance of the FailedToLaunchApplicationException class by using the provided message.
public:
FailedToLaunchApplicationException(System::String ^ message);
public FailedToLaunchApplicationException (string message);
new Microsoft.VisualStudio.TestTools.UITest.Extension.FailedToLaunchApplicationException : string -> Microsoft.VisualStudio.TestTools.UITest.Extension.FailedToLaunchApplicationException
Public Sub New (message As String)
Parameters
- message
- String
The error message.
Applies to
FailedToLaunchApplicationException(SerializationInfo, StreamingContext)
Initializes a new instance of the FailedToLaunchApplicationException class for deserialization.
protected:
FailedToLaunchApplicationException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected FailedToLaunchApplicationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualStudio.TestTools.UITest.Extension.FailedToLaunchApplicationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.TestTools.UITest.Extension.FailedToLaunchApplicationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
A SerializationInfo object.
- context
- StreamingContext
A StreamingContext object.
Applies to
FailedToLaunchApplicationException(String, Exception)
Initializes a new instance of the FailedToLaunchApplicationException class by using the provided message and inner exception.
public:
FailedToLaunchApplicationException(System::String ^ message, Exception ^ innerException);
public FailedToLaunchApplicationException (string message, Exception innerException);
new Microsoft.VisualStudio.TestTools.UITest.Extension.FailedToLaunchApplicationException : string * Exception -> Microsoft.VisualStudio.TestTools.UITest.Extension.FailedToLaunchApplicationException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The error message.
- innerException
- Exception
The original exception that caused this exception.