コード例 #1
0
 public static void DisposeNonSessionResources(LocalModeSession localSession)
 {
     if (localSession != null)
     {
         ((InternalLocalReport)localSession.Report).ReleaseSandboxAppDomain();
     }
 }
コード例 #2
0
        public ReportHierarchy()
        {
            //ServerModeSession serverSession = new ServerModeSession(serverReport);
            LocalModeSession localSession = new LocalModeSession();
            ReportInfo       item         = new ReportInfo(localSession);

            base.Push(item);
        }
コード例 #3
0
 public ReportInfo(LocalModeSession localSession)
 {
     this.m_localSession = localSession;
 }