2 instantiations of SessionInfo
mscorlib (2)
system\diagnostics\eventing\eventprovider.cs (2)
444sessionList.Add(new SessionInfo(bitindex(sessionIdBitMask)+1, etwSessionId)); 449sessionList.Add(new SessionInfo(bitcount((uint)SessionMask.All)+1, etwSessionId));
11 references to SessionInfo
mscorlib (11)
system\diagnostics\eventing\eventprovider.cs (11)
85private List<SessionInfo> m_liveSessions; // current live sessions (Tuple<sessionIdBit, etwSessionId>) 294List<Tuple<SessionInfo, bool>> sessionsChanged = GetSessions(); 382private List<Tuple<SessionInfo, bool>> GetSessions() 384List<SessionInfo> liveSessionList = null; 390List<Tuple<SessionInfo, bool>> changedSessionList = new List<Tuple<SessionInfo, bool>>(); 396foreach(SessionInfo s in m_liveSessions) 409foreach (SessionInfo s in liveSessionList) 430ref List<SessionInfo> sessionList) 439sessionList = new List<SessionInfo>(8); 505private static int IndexOfSessionInList(List<SessionInfo> sessions, int etwSessionId)