Contains a key and value pair. More...
Public Member Functions | |
| NameValuePair (K key, V value) | |
| Creates an instance of the object. More... | |
| override string | ToString () |
| Returns a string representation of the value for this item. More... | |
Protected Member Functions | |
| override void | OnGetState (SerializationInfo info, StateMode mode) |
| Override this method to manually get custom field values from the serialization stream. More... | |
| override void | OnSetState (SerializationInfo info, StateMode mode) |
| Override this method to manually set custom field values into the serialization stream. More... | |
Protected Member Functions inherited from Csla.Core.MobileObject | |
| virtual void | OnGetChildren (SerializationInfo info, MobileFormatter formatter) |
| Override this method to insert your child object references into the MobileFormatter serialzation stream. More... | |
| virtual void | OnSetChildren (SerializationInfo info, MobileFormatter formatter) |
| Override this method to retrieve your child object references from the MobileFormatter serialzation stream. More... | |
Properties | |
| K | Key [get] |
| The Key or Name value. More... | |
| V | Value [get] |
| The Value corresponding to the key/name. More... | |
Contains a key and value pair.
Definition at line 157 of file NameValueListBase.cs.
| Csla.NameValueListBase< K, V >.NameValuePair.NameValuePair | ( | K | key, |
| V | value | ||
| ) |
Creates an instance of the object.
| key | The key. |
| value | The value. |
Definition at line 193 of file NameValueListBase.cs.
|
protectedvirtual |
Override this method to manually get custom field values from the serialization stream.
| info | Serialization info. |
| mode | Serialization mode. |
Reimplemented from Csla.Core.MobileObject.
Definition at line 214 of file NameValueListBase.cs.
|
protectedvirtual |
Override this method to manually set custom field values into the serialization stream.
| info | Serialization info. |
| mode | Serialization mode. |
Reimplemented from Csla.Core.MobileObject.
Definition at line 227 of file NameValueListBase.cs.
| override string Csla.NameValueListBase< K, V >.NameValuePair.ToString | ( | ) |
Returns a string representation of the value for this item.
Definition at line 203 of file NameValueListBase.cs.
|
get |
The Key or Name value.
Definition at line 175 of file NameValueListBase.cs.
|
get |
The Value corresponding to the key/name.
Definition at line 183 of file NameValueListBase.cs.