MessageQueryTable<TItem>.Add Method

Definition

Adds an item to the collection.

Overloads

Add(KeyValuePair<MessageQuery,TItem>)

Adds an item defined as a key/value pair.

Add(MessageQuery, TItem)

Adds an item to the collection using a key/value system.

Add(KeyValuePair<MessageQuery,TItem>)

Adds an item defined as a key/value pair.

public:
 virtual void Add(System::Collections::Generic::KeyValuePair<System::ServiceModel::Dispatcher::MessageQuery ^, TItem> item);
public void Add (System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery,TItem> item);
abstract member Add : System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery, 'Item> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery, 'Item> -> unit
Public Sub Add (item As KeyValuePair(Of MessageQuery, TItem))

Parameters

item
KeyValuePair<MessageQuery,TItem>

The generic KeyValuePair<TKey,TValue> to add.

Implements

Applies to

Add(MessageQuery, TItem)

Adds an item to the collection using a key/value system.

public:
 virtual void Add(System::ServiceModel::Dispatcher::MessageQuery ^ key, TItem value);
public void Add (System.ServiceModel.Dispatcher.MessageQuery key, TItem value);
abstract member Add : System.ServiceModel.Dispatcher.MessageQuery * 'Item -> unit
override this.Add : System.ServiceModel.Dispatcher.MessageQuery * 'Item -> unit
Public Sub Add (key As MessageQuery, value As TItem)

Parameters

key
MessageQuery

A MessageQuery that acts as a key.

value
TItem

The value to add, associated with the key.

Implements

Applies to