#AdHocCache
##Properties
None.
##Methods
###Equals(System.Object) Determines whether the specified System.Object is equal to the current System.Object.
Parameters:
- System.Object obj - The System.Object to compare with the current System.Object.
Returns:
true if the specified System.Object is equal to the current System.Object; otherwise, false.
###GetHashCode() Serves as a hash function for a particular type.
Returns:
A hash code for the current System.Object.
###GetType() Gets the System.Type of the current instance.
Returns:
The System.Type instance that represents the exact runtime type of the current instance.
###GetValue(Izenda.AdHoc.Scope,System.String) Fetches the cached value with the specified Izenda.AdHoc.Scope and name with the specified value.
Parameters:
- Izenda.AdHoc.Scope scope - The Izenda.AdHoc.Scope that describes where in memory the object is stored.
- System.String name - The System.String representation of the name given to the cache item to identify it uniquely in the cache.
Returns:
The System.Object representation of the value that the cached value will be updated with.
###Remove(Izenda.AdHoc.Scope,System.String) Removes an item from the cache with the specified Izenda.AdHoc.Scope and name identifier.
Parameters:
- Izenda.AdHoc.Scope scope - The Izenda.AdHoc.Scope that describes where in memory the object will be stored.
- System.String name - The System.String representation of the name given to the cache item to identify it uniquely in the cache.
###SetValue(Izenda.AdHoc.Scope,System.String,System.Object) Creates or updates the cached value with the specified Izenda.AdHoc.Scope and name with the specified value.
Parameters:
- Izenda.AdHoc.Scope scope - The Izenda.AdHoc.Scope that describes where in memory the object will be stored.
- System.String name - The System.String representation of the name given to the cache item to identify it uniquely in the cache.
- System.Object value - The System.Object representation of the value that the cached value will be updated with.
###ToString() Returns a System.String that represents the current System.Object.
Returns:
A System.String that represents the current System.Object.
