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