5 references to SumType
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Hover\HoverHandler.cs (1)
124
Contents = new
SumType
<string, MarkedString, SumType<string, MarkedString>[], MarkupContent>(string.Empty),
Protocol\SumType.cs (4)
573
public static implicit operator SumType<T1, T2, T3, T4>(T1 val) => new
SumType
<T1, T2, T3, T4>(val);
579
public 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),