C# Class Crow.Library.Common.ThreadItemManager

Inheritance: ItemManagerBase
Show file Open project: msusur/Crowfx

Private Properties

Property Type Description

Public Methods

Method Description
Add ( object key, object @object ) : void

Puts the specified key to the Http Local State.

Clear ( ) : void

Clears all the states.

Get ( object key ) : object

Gets the specified key from Http Local State.

Remove ( object key ) : void

Removes the specified key from Http Local State.

Method Details

Add() public method

Puts the specified key to the Http Local State.
public Add ( object key, object @object ) : void
key object The key.
@object object
return void

Clear() public method

Clears all the states.
public Clear ( ) : void
return void

Get() public method

Gets the specified key from Http Local State.
public Get ( object key ) : object
key object The key.
return object

Remove() public method

Removes the specified key from Http Local State.
public Remove ( object key ) : void
key object The key.
return void