소스 검색

remove session

master
Savorboard 7 년 전
부모
커밋
41cf35d153
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. +0
    -4
      src/DotNetCore.CAP/Dashboard/RazorPage.cs

+ 0
- 4
src/DotNetCore.CAP/Dashboard/RazorPage.cs 파일 보기

@@ -3,7 +3,6 @@ using System.Diagnostics;
using System.Net;
using System.Text;
using DotNetCore.CAP.Dashboard.Monitoring;
using Microsoft.AspNetCore.Http;

namespace DotNetCore.CAP.Dashboard
{
@@ -40,7 +39,6 @@ namespace DotNetCore.CAP.Dashboard

protected DashboardRequest Request { private get; set; }
protected DashboardResponse Response { private get; set; }
internal ISession Session { get; private set; }
internal IServiceProvider RequestServices { get; private set; }

public string RequestPath => Request.Path;
@@ -68,7 +66,6 @@ namespace DotNetCore.CAP.Dashboard
StatsPollingInterval = parentPage.StatsPollingInterval;
Url = parentPage.Url;
RequestServices = parentPage.RequestServices;
Session = parentPage.Session;

GenerationTime = parentPage.GenerationTime;
_statisticsLazy = parentPage._statisticsLazy;
@@ -79,7 +76,6 @@ namespace DotNetCore.CAP.Dashboard
Request = context.Request;
Response = context.Response;
RequestServices = context.RequestServices;
Session = context.Session;
Storage = context.Storage;
AppPath = context.Options.AppPath;
StatsPollingInterval = context.Options.StatsPollingInterval;


불러오는 중...
취소
저장