Class TransientDictionary
Class for tracking Dictionary changes
Inheritance
System.Object
TransientDictionary
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public class TransientDictionary : Dictionary<string, object>
Properties
HasChanges
Does this model instance have changes?
Declaration
public bool HasChanges { get; }
Property Value
System.Boolean
|
Item[String]
Gets or sets the value of an object in this dictionary
Declaration
public object this[string key] { get; set; }
Parameters
System.String
key
Key of the object to set |
Property Value
System.Object
|
Methods
Add(String, Object)
Adds a new item to the dictionary
Declaration
public void Add(string key, object value)
Parameters
System.String
key
Key of the item to add |
System.Object
value
Value of the item to add |