public DocumentPullDiagnosticHandler(
     IXamlPullDiagnosticService xamlPullDiagnosticService)
     : base(xamlPullDiagnosticService)
 {
 }
 protected AbstractPullDiagnosticHandler(IXamlPullDiagnosticService xamlDiagnosticService)
 {
     _xamlDiagnosticService = xamlDiagnosticService;
 }
Пример #3
0
 public WorkspacePullDiagnosticHandler(
     IXamlPullDiagnosticService xamlPullDiagnosticService)
     : base(xamlPullDiagnosticService)
 {
 }
 public WorkspacePullDiagnosticHandler(
     ILspSolutionProvider solutionProvider,
     IXamlPullDiagnosticService xamlPullDiagnosticService)
     : base(solutionProvider, xamlPullDiagnosticService)
 {
 }
 protected AbstractPullDiagnosticHandler(ILspSolutionProvider solutionProvider, IXamlPullDiagnosticService xamlDiagnosticService)
 {
     _solutionProvider      = solutionProvider;
     _xamlDiagnosticService = xamlDiagnosticService;
 }
 public DocumentPullDiagnosticHandler(
     ILspSolutionProvider solutionProvider,
     IXamlPullDiagnosticService xamlPullDiagnosticService)
     : base(solutionProvider, xamlPullDiagnosticService)
 {
 }