C# Class Commons.Collections.LRUMap.SyncLRUMap

Inheritance: LRUMap, IDictionary, IEnumerable
Datei anzeigen Open project: nats/castle-1.0.3-mono

Protected Properties

Property Type Description
_table LRUMap

Public Methods

Method Description
Add ( Object key, Object value ) : void
Clear ( ) : void
Contains ( Object key ) : bool
CopyTo ( Array array, int arrayIndex ) : void
Remove ( Object key ) : void
this ( Object key ) : Object

Private Methods

Method Description
IDictionary ( ) : IDictionaryEnumerator
SyncLRUMap ( LRUMap table ) : System

Method Details

Add() public method

public Add ( Object key, Object value ) : void
key Object
value Object
return void

Clear() public method

public Clear ( ) : void
return void

Contains() public method

public Contains ( Object key ) : bool
key Object
return bool

CopyTo() public method

public CopyTo ( Array array, int arrayIndex ) : void
array System.Array
arrayIndex int
return void

Remove() public method

public Remove ( Object key ) : void
key Object
return void

this() public method

public this ( Object key ) : Object
key Object
return Object

Property Details

_table protected_oe property

protected LRUMap,Commons.Collections _table
return LRUMap