123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CommonLang.Net
- {
- public interface AbstractSession
- {
-
-
-
-
-
- object GetAttribute(string key);
-
-
-
-
-
-
- void SetAttribute(string key, object value);
-
-
-
-
-
- void RemoveAttribute(string key);
-
-
-
-
-
- bool ContainsAttribute(string key);
-
-
-
-
- ICollection<string> GetAttributeKeys();
- }
- }
|