Defines a dictionary that can be serialized through the SerializationFormatterFactory.GetFormatter(). More...
Public Member Functions | |
| MobileDictionary () | |
| Creates an instance of the object. More... | |
| MobileDictionary (int capacity) | |
| Creates an instance of the object based on the supplied dictionary, whose elements are copied to the new dictionary. More... | |
| MobileDictionary (IEqualityComparer< K > comparer) | |
| Creates an instance of the object based on the supplied dictionary, whose elements are copied to the new dictionary. More... | |
| MobileDictionary (Dictionary< K, V > dict) | |
| Creates an instance of the object based on the supplied dictionary, whose elements are copied to the new dictionary. More... | |
| bool | Contains (K key) |
| Gets a value indicating whether the dictionary contains the specified key value. More... | |
Protected Member Functions | |
| MobileDictionary (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) | |
| Creates an instance of the object for serialization. More... | |
Defines a dictionary that can be serialized through the SerializationFormatterFactory.GetFormatter().
| K | Key value: any primitive or IMobileObject type. |
| V | Value: any primitive or IMobileObject type. |
Definition at line 24 of file MobileDictionary.cs.
| Csla.Core.MobileDictionary< K, V >.MobileDictionary | ( | ) |
Creates an instance of the object.
Definition at line 32 of file MobileDictionary.cs.
| Csla.Core.MobileDictionary< K, V >.MobileDictionary | ( | int | capacity | ) |
Creates an instance of the object based on the supplied dictionary, whose elements are copied to the new dictionary.
| capacity | The initial number of elements the dictionary can contain. |
Definition at line 44 of file MobileDictionary.cs.
| Csla.Core.MobileDictionary< K, V >.MobileDictionary | ( | IEqualityComparer< K > | comparer | ) |
Creates an instance of the object based on the supplied dictionary, whose elements are copied to the new dictionary.
| comparer | The comparer to use when comparing keys. |
Definition at line 57 of file MobileDictionary.cs.
| Csla.Core.MobileDictionary< K, V >.MobileDictionary | ( | Dictionary< K, V > | dict | ) |
Creates an instance of the object based on the supplied dictionary, whose elements are copied to the new dictionary.
| dict | Source dictionary. |
Definition at line 69 of file MobileDictionary.cs.
|
protected |
Creates an instance of the object for serialization.
| context | Serialization context. |
| info | Serialization info. |
Definition at line 92 of file MobileDictionary.cs.
| bool Csla.Core.MobileDictionary< K, V >.Contains | ( | K | key | ) |
Gets a value indicating whether the dictionary contains the specified key value.
| key | Key value |
Definition at line 81 of file MobileDictionary.cs.