Class TransientDictionary
Class for tracking Dictionary changes
public class TransientDictionary : Dictionary<string, object>, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IReadOnlyDictionary<string, object>, IReadOnlyCollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable
- Inheritance
-
TransientDictionary
- Implements
- Inherited Members
Properties
HasChanges
Does this model instance have changes?
public bool HasChanges { get; }
Property Value
this[string]
Gets or sets the value of an object in this dictionary
public object this[string key] { get; set; }
Parameters
keystringKey of the object to set
Property Value
Methods
Add(string, object)
Adds a new item to the dictionary
public void Add(string key, object value)