EventQueueName Constructors

Definition

Initializes a new instance of the EventQueueName class.

Overloads

EventQueueName(Type, String)

Initializes a new instance of the EventQueueName class by using the specified Type and operation name.

EventQueueName(Type, String, ICollection<CorrelationProperty>)

Initializes a new instance of the EventQueueName class.

EventQueueName(Type, String)

Initializes a new instance of the EventQueueName class by using the specified Type and operation name.

public:
 EventQueueName(Type ^ interfaceType, System::String ^ operation);
public EventQueueName (Type interfaceType, string operation);
new System.Workflow.Activities.EventQueueName : Type * string -> System.Workflow.Activities.EventQueueName
Public Sub New (interfaceType As Type, operation As String)

Parameters

interfaceType
Type

The Type of the interface to associate with the EventQueueName.

operation
String

A string that contains the name of the operation to associate with the EventQueueName.

Applies to

EventQueueName(Type, String, ICollection<CorrelationProperty>)

Initializes a new instance of the EventQueueName class.

public:
 EventQueueName(Type ^ interfaceType, System::String ^ operation, System::Collections::Generic::ICollection<System::Workflow::Runtime::CorrelationProperty ^> ^ propertyValues);
public EventQueueName (Type interfaceType, string operation, System.Collections.Generic.ICollection<System.Workflow.Runtime.CorrelationProperty> propertyValues);
new System.Workflow.Activities.EventQueueName : Type * string * System.Collections.Generic.ICollection<System.Workflow.Runtime.CorrelationProperty> -> System.Workflow.Activities.EventQueueName
Public Sub New (interfaceType As Type, operation As String, propertyValues As ICollection(Of CorrelationProperty))

Parameters

interfaceType
Type

The Type of the interface.

operation
String

A string that contains the name of the operation to associate with the EventQueueName.

propertyValues
ICollection<CorrelationProperty>

A CorrelationProperty collection that defines the property values to associate with EventQueueName.

Applies to