Gets or sets the Object at the specified key.

Namespace: Simol.Cache
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
Object this[
	string key
] { get; set; }
Visual Basic
Default Property Item ( _
	key As String _
) As Object
	Get
	Set
Visual C++
property Object^ default[String^ key] {
	Object^ get (String^ key);
	void set (String^ key, Object^ value);
}

Parameters

key
Type: System..::..String

Field Value

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf the key is null
System..::..ArgumentOutOfRangeExceptionIf the key is empty

See Also