示例#1
0
		static ADSessionCache()
		{
			ADSessionCache._cacheObject = new ADSessionCache();
			ADSessionCache._debugCategory = "ADSessionCache";
			Guid guid = Guid.NewGuid();
			ADSessionCache._defaultServerKey = guid.ToString();
			ADSessionCache._sessionMap = new Dictionary<string, List<ADSessionCache.CacheEntry>>(StringComparer.OrdinalIgnoreCase);
		}
示例#2
0
        static ADSessionCache()
        {
            ADSessionCache._cacheObject   = new ADSessionCache();
            ADSessionCache._debugCategory = "ADSessionCache";
            Guid guid = Guid.NewGuid();

            ADSessionCache._defaultServerKey = guid.ToString();
            ADSessionCache._sessionMap       = new Dictionary <string, List <ADSessionCache.CacheEntry> >(StringComparer.OrdinalIgnoreCase);
        }
示例#3
0
		static ADSession()
		{
			ADSession._sessionCache = ADSessionCache.GetObject();
			ADSession._debugCategory = "ADSessionCache";
		}
示例#4
0
 static ADSession()
 {
     ADSession._sessionCache  = ADSessionCache.GetObject();
     ADSession._debugCategory = "ADSessionCache";
 }