コード例 #1
0
 public UploadLogController(IBehaviorService behaviorService
                            , IJavascriptErrorService javascriptErrorService
                            , ICustomerPVService customerPVService
                            , ILoadPageService loadPageService
                            , IResourceLoadService resourceLoadService
                            , IHttpLogService httpLogService
                            , IExtendBehaviorService extendBehaviorService
                            , IScreenShotService screenShotService)
 {
     _behaviorService        = behaviorService;
     _javascriptErrorService = javascriptErrorService;
     _customerPVService      = customerPVService;
     _loadPageService        = loadPageService;
     _resourceLoadService    = resourceLoadService;
     _httpLogService         = httpLogService;
     _extendBehaviorService  = extendBehaviorService;
     _screenShotService      = screenShotService;
 }
コード例 #2
0
 public HttpLogTest()
 {
     _httpLogService = ServiceLocator.Current.GetInstance <IHttpLogService>();
 }
コード例 #3
0
 public GatewayMiddleware(IHttpLogService httpLogService, IExceptionService exceptionService, RequestDelegate requestDelegate)
 {
     _httpLogService   = httpLogService;
     _exceptionService = exceptionService;
     _requestDelegate  = requestDelegate;
 }