MultipleFilterMatchesException Constructors

Definition

Initializes a new instance of the MultipleFilterMatchesException class.

Overloads

MultipleFilterMatchesException()

Initializes a new instance of the MultipleFilterMatchesException class.

MultipleFilterMatchesException(String)

Initializes a new instance of the MultipleFilterMatchesException class with a specified error message.

MultipleFilterMatchesException(SerializationInfo, StreamingContext)

Initializes a new instance of the MultipleFilterMatchesException class with serialization information and streaming context specified.

MultipleFilterMatchesException(String, Collection<MessageFilter>)

Initializes a new instance of the MultipleFilterMatchesException class with a specified error message and a collection of filters.

MultipleFilterMatchesException(String, Exception)

Initializes a new instance of the MultipleFilterMatchesException class.

MultipleFilterMatchesException(String, Exception, Collection<MessageFilter>)

Initializes a new instance of the MultipleFilterMatchesException class with a specified error message, an exception, and a collection of filters.

MultipleFilterMatchesException()

Initializes a new instance of the MultipleFilterMatchesException class.

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

Applies to

MultipleFilterMatchesException(String)

Initializes a new instance of the MultipleFilterMatchesException class with a specified error message.

public:
 MultipleFilterMatchesException(System::String ^ message);
public MultipleFilterMatchesException (string message);
new System.ServiceModel.Dispatcher.MultipleFilterMatchesException : string -> System.ServiceModel.Dispatcher.MultipleFilterMatchesException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

MultipleFilterMatchesException(SerializationInfo, StreamingContext)

Initializes a new instance of the MultipleFilterMatchesException class with serialization information and streaming context specified.

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

Parameters

info
SerializationInfo

The SerializationInfo that contains all the data required to serialize the exception.

context
StreamingContext

The StreamingContext that specifies the source and destination of the stream.

Applies to

MultipleFilterMatchesException(String, Collection<MessageFilter>)

Initializes a new instance of the MultipleFilterMatchesException class with a specified error message and a collection of filters.

public:
 MultipleFilterMatchesException(System::String ^ message, System::Collections::ObjectModel::Collection<System::ServiceModel::Dispatcher::MessageFilter ^> ^ filters);
public MultipleFilterMatchesException (string message, System.Collections.ObjectModel.Collection<System.ServiceModel.Dispatcher.MessageFilter> filters);
new System.ServiceModel.Dispatcher.MultipleFilterMatchesException : string * System.Collections.ObjectModel.Collection<System.ServiceModel.Dispatcher.MessageFilter> -> System.ServiceModel.Dispatcher.MultipleFilterMatchesException
Public Sub New (message As String, filters As Collection(Of MessageFilter))

Parameters

message
String

The error message that explains the reason for the exception.

filters
Collection<MessageFilter>

A collection of message filters.

Applies to

MultipleFilterMatchesException(String, Exception)

Initializes a new instance of the MultipleFilterMatchesException class.

public:
 MultipleFilterMatchesException(System::String ^ message, Exception ^ innerException);
public MultipleFilterMatchesException (string message, Exception innerException);
new System.ServiceModel.Dispatcher.MultipleFilterMatchesException : string * Exception -> System.ServiceModel.Dispatcher.MultipleFilterMatchesException
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 caused the current exception to be thrown.

Applies to

MultipleFilterMatchesException(String, Exception, Collection<MessageFilter>)

Initializes a new instance of the MultipleFilterMatchesException class with a specified error message, an exception, and a collection of filters.

public:
 MultipleFilterMatchesException(System::String ^ message, Exception ^ innerException, System::Collections::ObjectModel::Collection<System::ServiceModel::Dispatcher::MessageFilter ^> ^ filters);
public MultipleFilterMatchesException (string message, Exception innerException, System.Collections.ObjectModel.Collection<System.ServiceModel.Dispatcher.MessageFilter> filters);
new System.ServiceModel.Dispatcher.MultipleFilterMatchesException : string * Exception * System.Collections.ObjectModel.Collection<System.ServiceModel.Dispatcher.MessageFilter> -> System.ServiceModel.Dispatcher.MultipleFilterMatchesException
Public Sub New (message As String, innerException As Exception, filters As Collection(Of MessageFilter))

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The Exception that caused the current exception to be thrown.

filters
Collection<MessageFilter>

A collection of message filters.

Applies to