Gets the specified queue.

Namespace: ININ.InteractionClient.AddIn
Assembly: ININ.InteractionClient.AddIn (in ININ.InteractionClient.AddIn.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
IQueue GetQueue(
	string name,
	IEnumerable<string> attributes,
	IEnumerable<string> supportingAttributes
)
Visual Basic
Function GetQueue ( _
	name As String, _
	attributes As IEnumerable(Of String), _
	supportingAttributes As IEnumerable(Of String) _
) As IQueue

Parameters

name
Type: System..::..String
The name of the queue. An empty string will get the "My Interactions" queue, or use the MyInteractionsQueueName property to explicitly specify the "My Interactions" queue.
attributes
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The interaction attributes to monitor for changes on the queue.
supportingAttributes
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
Additional interaction attributes for which change notifications are not raised, but are still available to query on an interaction.

Return Value

An IQueue instance corresponding to the specified queue name.

See Also