iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

IBatisNet.DataAccess.SessionStore Namespace

Namespace hierarchy

Classes

Class Description
AbstractSessionStore
CallContextSessionStore Provides an implementation of ISessionStore which relies on CallContext This implementation will first get the current session from the current thread. Do NOT use on web scenario (web applications or web services).
HybridWebThreadSessionStore This implementation of ISessionStorewill first try to get the currentrequest, and if not found, will use a thread local.
SessionStoreFactory Build a session container for a Windows or Web context. When running in the context of a web application the session object is stored in HttpContext items and has 'per request' lifetime. When running in the context of a windows application the session object is stored via CallContext.
WebSessionStore Provides an implementation of ISessionStore which relies on HttpContext. Suitable for web projects.

Interfaces

Interface Description
ISessionStore Provides the contract for implementors who want to store session.