TechnologyNotSupportedException Constructors

Definition

Overloads

TechnologyNotSupportedException()

Initializes a new instance of the TechnologyNotSupportedException class.

TechnologyNotSupportedException(String)

Initializes a new instance of the TechnologyNotSupportedException class by using the provided message.

TechnologyNotSupportedException(SerializationInfo, StreamingContext)

Initializes a new instance of the TechnologyNotSupportedException class for deserialization.

TechnologyNotSupportedException(String, Exception)

Initializes a new instance of the TechnologyNotSupportedException class by using the provided message and inner exception.

TechnologyNotSupportedException()

Initializes a new instance of the TechnologyNotSupportedException class.

public:
 TechnologyNotSupportedException();
public TechnologyNotSupportedException ();
Public Sub New ()

Applies to

TechnologyNotSupportedException(String)

Initializes a new instance of the TechnologyNotSupportedException class by using the provided message.

public:
 TechnologyNotSupportedException(System::String ^ message);
public TechnologyNotSupportedException (string message);
new Microsoft.VisualStudio.TestTools.UITest.Extension.TechnologyNotSupportedException : string -> Microsoft.VisualStudio.TestTools.UITest.Extension.TechnologyNotSupportedException
Public Sub New (message As String)

Parameters

message
String

The preferred error message.

Applies to

TechnologyNotSupportedException(SerializationInfo, StreamingContext)

Initializes a new instance of the TechnologyNotSupportedException class for deserialization.

protected:
 TechnologyNotSupportedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TechnologyNotSupportedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualStudio.TestTools.UITest.Extension.TechnologyNotSupportedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.TestTools.UITest.Extension.TechnologyNotSupportedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

Applies to

TechnologyNotSupportedException(String, Exception)

Initializes a new instance of the TechnologyNotSupportedException class by using the provided message and inner exception.

public:
 TechnologyNotSupportedException(System::String ^ message, Exception ^ innerException);
public TechnologyNotSupportedException (string message, Exception innerException);
new Microsoft.VisualStudio.TestTools.UITest.Extension.TechnologyNotSupportedException : string * Exception -> Microsoft.VisualStudio.TestTools.UITest.Extension.TechnologyNotSupportedException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message.

innerException
Exception

The exception that caused the current exception.

Applies to