System.Threading.Tasks.Task.FromResult(VSInternalWorkspaceDiagnosticReport)

Here are the examples of the csharp api System.Threading.Tasks.Task.FromResult(VSInternalWorkspaceDiagnosticReport) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : RazorHtmlCSharpLanguageServer.cs
with MIT License
from dotnet

[JsonRpcMethod(VSInternalMethods.WorkspacePullDiagnosticName, UseSingleObjectParameterDeserialization = true)]
        public static Task<VSInternalWorkspaceDiagnosticReport?> WorkspacePullDiagnosticsAsync(VSInternalWorkspaceDiagnosticsParams workspaceDiagnosticsParams, CancellationToken cancellationToken)
        {
            return Task.FromResult<VSInternalWorkspaceDiagnosticReport?>(null);
        }