3 references to new
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Protocol\Internal\Converters\ImageElementConverter.cs (1)
28return automationName is null ? new ImageElement(imageId.Value) : new ImageElement(imageId.Value, automationName);
Protocol\Internal\Text\ImageElement.cs (2)
14public static readonly ImageElement Empty = new(default, string.Empty); 19public ImageElement(ImageId imageId) : this(imageId, null)