Property | Type | Description | |
---|---|---|---|
items | IDictionary | ||
lastAccess | string |
Method | Description | |
---|---|---|
Add ( object key, object value ) : void |
Adds an element with the provided key and value to the
|
|
Clear ( ) : void |
Removes all elements from the
|
|
Contains ( object key ) : bool |
Determines whether the
|
|
CopyTo ( |
Copies the elements of the
|
|
GetEnumerator ( ) : IEnumerator |
Returns an enumerator that iterates through a collection.
|
|
QuackGet ( string name, object parameters ) : object |
Get a value by name or first parameter
|
|
QuackInvoke ( string name ) : object |
Not supported
|
|
QuackSet ( string name, object parameters, object value ) : object |
Set a value on the given name or first parameter
|
|
QuackingDictionary ( IDictionary items ) : System |
Initializes a new instance of the QuackingDictionary class.
|
|
Remove ( object key ) : void |
Removes the element with the specified key from the
|
|
ShouldThrowIfKeyNotFound ( ) : void |
Set the flag to thorw if key not found.
|
|
ToString ( ) : string |
Returns a T:System.String that represents the current T:System.Object.
|
|
this ( object key ) : object |
Gets or sets the element with the specified key.
|
|
this ( string key ) : object |
Gets or sets the System.Object with the specified key.
|
Method | Description | |
---|---|---|
IDictionary ( ) : IDictionaryEnumerator |
Returns an
|
public Add ( object key, object value ) : void | ||
key | object | The |
value | object | The |
return | void |
public Contains ( object key ) : bool | ||
key | object | The key to locate in the |
return | bool |
public CopyTo ( |
||
array | The one-dimensional |
|
index | int | The zero-based index in array at which copying begins. |
return | void |
public QuackGet ( string name, object parameters ) : object | ||
name | string | |
parameters | object | |
return | object |
public QuackSet ( string name, object parameters, object value ) : object | ||
name | string | |
parameters | object | |
value | object | |
return | object |
public QuackingDictionary ( IDictionary items ) : System | ||
items | IDictionary | The items. |
return | System |
public Remove ( object key ) : void | ||
key | object | The key of the element to remove. |
return | void |
public this ( object key ) : object | ||
key | object | The key of the element to get or set. |
return | object |