Apache.Shiro.Session.Management.SimpleSession.GetAttribute C# (CSharp) Method

GetAttribute() public method

public GetAttribute ( object key ) : object
key object
return object
        public object GetAttribute(object key)
        {
            if (Attributes == null)
            {
                return null;
            }

            object value;
            Attributes.TryGetValue(key, out value);
            return value;
        }