Method | Description | |
---|---|---|
FindCompatibleSession ( String alias ) : SessionDelegate |
Should return a previously stored session for the given alias if available, otherwise null.
|
|
FindCompatibleStatelessSession ( string alias ) : StatelessSessionDelegate |
Should return a previously stored stateless session for the given alias if available, otherwise null.
|
|
IsCurrentActivityEmptyFor ( String alias ) : bool |
Returns
|
|
Remove ( SessionDelegate session ) : void |
Should remove the session from the store only.
|
|
Remove ( StatelessSessionDelegate session ) : void |
Should remove the stateless session from the store only.
|
|
Store ( String alias, SessionDelegate session ) : void |
Should store the specified session instance
|
|
Store ( string alias, StatelessSessionDelegate session ) : void |
Should store the specified stateless session instance.
|
Method | Description | |
---|---|---|
GetStackFor ( String alias ) : |
Gets the stack of SessionDelegate objects for the specified alias.
|
|
GetStatelessSessionStackFor ( String alias ) : |
Gets the stack of StatelessSessionDelegate objects for the specified alias.
|
public FindCompatibleSession ( String alias ) : SessionDelegate | ||
alias | String | |
return | SessionDelegate |
public FindCompatibleStatelessSession ( string alias ) : StatelessSessionDelegate | ||
alias | string | |
return | StatelessSessionDelegate |
protected abstract GetStackFor ( String alias ) : |
||
alias | String | The alias. |
return |
protected abstract GetStatelessSessionStackFor ( String alias ) : |
||
alias | String | The alias. |
return |
public IsCurrentActivityEmptyFor ( String alias ) : bool | ||
alias | String | |
return | bool |
public Remove ( SessionDelegate session ) : void | ||
session | SessionDelegate | |
return | void |
public Remove ( StatelessSessionDelegate session ) : void | ||
session | StatelessSessionDelegate | |
return | void |
public Store ( String alias, SessionDelegate session ) : void | ||
alias | String | |
session | SessionDelegate | |
return | void |
public Store ( string alias, StatelessSessionDelegate session ) : void | ||
alias | string | |
session | StatelessSessionDelegate | |
return | void |