AdditionalPropertiesDictionary Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a dictionary used as the AdditionalProperties dictionary on Microsoft.Extensions.AI objects.
public ref class AdditionalPropertiesDictionary sealed : Microsoft::Extensions::AI::AdditionalPropertiesDictionary<System::Object ^>
public sealed class AdditionalPropertiesDictionary : Microsoft.Extensions.AI.AdditionalPropertiesDictionary<object>
type AdditionalPropertiesDictionary = class
inherit AdditionalPropertiesDictionary<obj>
Public NotInheritable Class AdditionalPropertiesDictionary
Inherits AdditionalPropertiesDictionary(Of Object)
- Inheritance
Constructors
AdditionalPropertiesDictionary() |
Initializes a new instance of the AdditionalPropertiesDictionary class. |
AdditionalPropertiesDictionary(IDictionary<String,Object>) |
Initializes a new instance of the AdditionalPropertiesDictionary class. |
AdditionalPropertiesDictionary(IEnumerable<KeyValuePair<String,Object>>) |
Initializes a new instance of the AdditionalPropertiesDictionary class. |
Properties
Count |
Gets the number of elements contained in the ICollection<T>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Item[String] |
Gets or sets the element with the specified key. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Keys |
Gets an ICollection<T> containing the keys of the IDictionary<TKey,TValue>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Values |
Gets an ICollection<T> containing the values in the IDictionary<TKey,TValue>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Methods
Add(String, TValue) |
Adds an element with the provided key and value to the IDictionary<TKey,TValue>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Clear() |
Removes all items from the ICollection<T>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Clone() |
Creates a shallow clone of the properties dictionary. |
ContainsKey(String) |
Determines whether the IDictionary<TKey,TValue> contains an element with the specified key. (Inherited from AdditionalPropertiesDictionary<TValue>) |
GetEnumerator() |
Returns an enumerator that iterates through the AdditionalPropertiesDictionary<TValue>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
Remove(String) |
Removes the element with the specified key from the IDictionary<TKey,TValue>. (Inherited from AdditionalPropertiesDictionary<TValue>) |
TryAdd(String, TValue) |
Attempts to add the specified key and value to the dictionary. (Inherited from AdditionalPropertiesDictionary<TValue>) |
TryGetValue(String, TValue) |
Gets the value associated with the specified key. (Inherited from AdditionalPropertiesDictionary<TValue>) |
TryGetValue<T>(String, T) |
Attempts to extract a typed value from the dictionary. (Inherited from AdditionalPropertiesDictionary<TValue>) |