InRowChangingEventException Constructors

Definition

Initializes a new instance of the InRowChangingEventException class.

Overloads

Name Description
InRowChangingEventException()

Initializes a new instance of the InRowChangingEventException class.

InRowChangingEventException(String)

Initializes a new instance of the InRowChangingEventException class with the specified string.

InRowChangingEventException(SerializationInfo, StreamingContext)

Initializes a new instance of the InRowChangingEventException class with serialization information.

InRowChangingEventException(String, Exception)

Initializes a new instance of the InRowChangingEventException class with a specified error message and a reference to the inner exception that is the cause of this exception.

InRowChangingEventException()

Initializes a new instance of the InRowChangingEventException class.

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

Applies to

InRowChangingEventException(String)

Initializes a new instance of the InRowChangingEventException class with the specified string.

public:
 InRowChangingEventException(System::String ^ s);
public InRowChangingEventException(string s);
new System.Data.InRowChangingEventException : string -> System.Data.InRowChangingEventException
Public Sub New (s As String)

Parameters

s
String

The string to display when the exception is thrown.

Applies to

InRowChangingEventException(SerializationInfo, StreamingContext)

Initializes a new instance of the InRowChangingEventException class with serialization information.

protected:
 InRowChangingEventException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.InRowChangingEventException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.InRowChangingEventException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The data that is required to serialize or deserialize an object.

context
StreamingContext

Description of the source and destination of the specified serialized stream.

See also

Applies to

InRowChangingEventException(String, Exception)

Initializes a new instance of the InRowChangingEventException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public:
 InRowChangingEventException(System::String ^ message, Exception ^ innerException);
public InRowChangingEventException(string message, Exception innerException);
new System.Data.InRowChangingEventException : string * Exception -> System.Data.InRowChangingEventException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Applies to