Method | Description | |
---|---|---|
Equals ( object obj ) : bool |
Determines whether the specified System.Object is equal to the current object.
|
|
GetHashCode ( ) : int |
Serves as a hash function for a particular type. GetHashCode() is suitable for use in hashing algorithms and data structures like a hash table.
|
|
Load ( IDictionary values ) : void |
Reads values from the supplied IDictionary object into properties of the current object.
|
|
ToDictionary ( ) : IDictionary |
Creates a new IDictionary object and populates it with the property values of the current object.
|
public Equals ( object obj ) : bool | ||
obj | object | The System.Object to compare with the current object. |
return | bool |
public abstract Load ( IDictionary values ) : void | ||
values | IDictionary | An IDictionary instance that contains the key/value /// pairs to be used as property values. |
return | void |
public abstract ToDictionary ( ) : IDictionary | ||
return | IDictionary |