Apache.Shiro.Session.ProxiedSession.ProxiedSession C# (CSharp) Method

ProxiedSession() public method

public ProxiedSession ( ISession target ) : System
target ISession
return System
        public ProxiedSession(ISession target)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target");
            }
            _delegate = target;
        }