Table of Contents

Add Method

Definition

Namespace
Savvyio
Assemblies
Savvyio.Core.dll
Source
src/Savvyio.Core/MetadataDictionary.cs

Add(KeyValuePair<string, object>)

Adds an item to the MetadataDictionary.

public void Add(KeyValuePair<string, object> item)

Parameters

item KeyValuePair<string, object>

The object to add to the MetadataDictionary.

Add(string, object)

Adds an element with the provided key and value to the MetadataDictionary.

public void Add(string key, object value)

Parameters

key string

The object to use as the key of the element to add.

value object

The object to use as the value of the element to add.