26 references to new
Microsoft.CodeAnalysis.LanguageServer.Protocol (26)
Protocol\Methods.Diagnostics.cs (3)
29public static readonly LspNotification<PublishDiagnosticParams> TextDocumentPublishDiagnostics = new(TextDocumentPublishDiagnosticsName); 53public static readonly LspNotification<DocumentDiagnosticParams> TextDocumentDiagnostic = new(TextDocumentDiagnosticName); 102public static readonly LspNotification<object?> WorkspaceDiagnosticRefresh = new(WorkspaceDiagnosticRefreshName);
Protocol\Methods.DocumentSynchronization.cs (5)
28public static readonly LspNotification<DidOpenTextDocumentParams> TextDocumentDidOpen = new(TextDocumentDidOpenName); 44public static readonly LspNotification<DidChangeTextDocumentParams> TextDocumentDidChange = new(TextDocumentDidChangeName); 60public static readonly LspNotification<WillSaveTextDocumentParams> TextDocumentWillSave = new(TextDocumentWillSaveName); 93public static readonly LspNotification<DidSaveTextDocumentParams> TextDocumentDidSave = new(TextDocumentDidSaveName); 111public static readonly LspNotification<DidCloseTextDocumentParams> TextDocumentDidClose = new(TextDocumentDidCloseName);
Protocol\Methods.Lifecyle.cs (4)
43public static readonly LspNotification<InitializedParams> Initialized = new(InitializedName); 91public static readonly LspNotification<SetTraceParams> SetTrace = new(SetTraceName); 112public static readonly LspNotification<LogTraceParams> LogTrace = new(LogTraceName); 146public static readonly LspNotification<object?> Exit = new(ExitName);
Protocol\Methods.Notebook.cs (4)
29public static readonly LspNotification<DidOpenNotebookDocumentParams> NotebookDidOpen = new(NotebookDidOpenName); 48public static readonly LspNotification<DidOpenNotebookDocumentParams> NotebookDidChange = new(NotebookDidChangeName); 67public static readonly LspNotification<DidSaveNotebookDocumentParams> NotebookDidSave = new(NotebookDidSaveName); 86public static readonly LspNotification<DidCloseNotebookDocumentParams> NotebookDidClose = new(NotebookDidCloseName);
Protocol\Methods.Window.cs (4)
24public static readonly LspNotification<ShowMessageParams> WindowShowMessage = new(WindowShowMessageName); 77public static readonly LspNotification<LogMessageParams> WindowLogMessage = new(WindowLogMessageName); 118public static readonly LspNotification<WorkDoneProgressCancelParams> WindowWorkDoneProgressCancel = new(WindowWorkDoneProgressCancelName); 139public static readonly LspNotification<object> TelemetryEvent = new(TelemetryEventName);
Protocol\Methods.Workspace.cs (6)
79public static readonly LspNotification<DidChangeConfigurationParams> WorkspaceDidChangeConfiguration = new(WorkspaceDidChangeConfigurationName); 121public static readonly LspNotification<DidChangeWorkspaceFoldersParams> WorkspaceDidChangeWorkspaceFolders = new(WorkspaceDidChangeWorkspaceFoldersName); 161public static readonly LspNotification<CreateFilesParams> WorkspaceDidCreateFiles = new(WorkspaceDidCreateFilesName); 201public static readonly LspNotification<RenameFilesParams> WorkspaceDidRenameFiles = new(WorkspaceDidRenameFilesName); 241public static readonly LspNotification<DeleteFilesParams> WorkspaceDidDeleteFiles = new(WorkspaceDidDeleteFilesName); 262public static readonly LspNotification<DidChangeWatchedFilesParams> WorkspaceDidChangeWatchedFiles = new(WorkspaceDidChangeWatchedFilesName);