2 implementations of ContentTypes
Microsoft.CodeAnalysis.EditorFeatures (2)
Extensibility\Composition\ContentTypeMetadata.cs (1)
14public IEnumerable<string> ContentTypes { get; } = (IEnumerable<string>)data.GetValueOrDefault("ContentTypes");
Extensibility\Composition\OrderableContentTypeMetadata.cs (1)
12public IEnumerable<string> ContentTypes { get; } = (IEnumerable<string>?)data.GetValueOrDefault("ContentTypes") ?? [];
1 reference to ContentTypes
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Extensions\MefExtensions.cs (1)
39return [.. extensions.Where(h => contentTypes.Any(d => d.MatchesAny(h.Metadata.ContentTypes)))];