6 references to SumType
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Hover\HoverHandler.cs (1)
124Contents = new SumType<string, MarkedString, SumType<string, MarkedString>[], MarkupContent>(string.Empty),
Protocol\SumType.cs (4)
573public static implicit operator SumType<T1, T2, T3, T4>(T1 val) => new(val); 579public static implicit operator SumType<T1, T2, T3, T4>?(T1? val) => val is null ? null : new SumType<T1, T2, T3, T4>(val); 623(v) => new SumType<T1, T2, T3, T4>(v), 632(v) => new SumType<T1, T2, T3, T4>(v),
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Extensions\LspExtensions_WorkspaceEdit.cs (1)
104builder.Add(new SumType<TextDocumentEdit, CreateFile, RenameFile, DeleteFile>(textDocumentEdit));