4 references to ImageElement
Microsoft.CodeAnalysis.EditorFeatures (1)
Extensions\LSPExtensions.cs (1)
15=> new(imageElement.ImageId.ToLSPImageId(), imageElement.AutomationName);
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Protocol\Internal\Converters\ImageElementConverter.cs (1)
31return 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)