Implemented interface member:
property
ContentTypes
Microsoft.CodeAnalysis.Editor.IContentTypeMetadata.ContentTypes
1 write to ContentTypes
Microsoft.CodeAnalysis.EditorFeatures (1)
Extensibility\Composition\ContentTypeMetadata.cs (1)
17
=> this.
ContentTypes
= (IEnumerable<string>)data.GetValueOrDefault("ContentTypes");
4 references to ContentTypes
Microsoft.CodeAnalysis.EditorFeatures (1)
Interactive\CommandHandlers\ExecuteInInteractiveCommandHandler.cs (1)
48
.Where(handler => handler.Metadata.
ContentTypes
.Any(textBuffer.ContentType.IsOfType))
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Workspaces\TestWorkspace.cs (1)
279
return values.Single(value => value.Metadata.
ContentTypes
.Contains(contentType)).Value;
Microsoft.VisualStudio.LanguageServices (2)
CodeCleanup\AbstractCodeCleanupFixerProvider.cs (1)
31
=> _codeCleanUpFixers.WhereAsArray(handler => handler.Metadata.
ContentTypes
.Any(contentType.IsOfType))
Interactive\AbstractResetInteractiveMenuCommand.cs (1)
53
.Where(resetInteractiveService => resetInteractiveService.Metadata.
ContentTypes
.Contains(_contentType))