9 lines
191 B
C#
9 lines
191 B
C#
namespace Umbraco.Web
|
|
{
|
|
public interface ISessionManager
|
|
{
|
|
string GetSessionValue(string sessionName);
|
|
void SetSessionValue(string sessionName, string value);
|
|
}
|
|
}
|