Skip to main content

SessionFactory.SessionCacheClient

Assembly: ServiceStack.dll​
View Source​
Declaration
public class SessionCacheClient : ISession

Properties​

Item[String]​

View Source​
Declaration
public object this[string key] { get; set; }

Methods​

Set<T>(String, T)​

View Source​
Declaration
public void Set<T>(string key, T value)
Parameters​
TypeName
System.Stringkey
<T>value
Type Parameters​
  • T

Get<T>(String)​

View Source​
Declaration
public T Get<T>(string key)
Returns​

<T>

Parameters​
TypeName
System.Stringkey
Type Parameters​
  • T

Remove(String)​

View Source​
Declaration
public bool Remove(string key)
Returns​

System.Boolean

Parameters​
TypeName
System.Stringkey

RemoveAll()​

View Source​
Declaration
public void RemoveAll()

Implements​