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.
|
|
Remove ( object key ) : void |
Removes the element with the specified key from the
|
|
SessionAdapter ( System.Web.SessionState.HttpSessionState session ) : System |
Initializes a new instance of the SessionAdapter class.
|
|
this ( object 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 Remove ( object key ) : void | ||
key | object | The key of the element to remove. |
return | void |
public SessionAdapter ( System.Web.SessionState.HttpSessionState session ) : System | ||
session | System.Web.SessionState.HttpSessionState | The session. |
return | System |