2 instantiations of TextDocumentEventArgs
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Workspace_Events.cs (2)
143=> RaiseTextDocumentOpenedOrClosedEventAsync(document, new TextDocumentEventArgs(document), TextDocumentOpenedEventName); 202=> RaiseTextDocumentOpenedOrClosedEventAsync(document, new TextDocumentEventArgs(document), TextDocumentClosedEventName);
11 references to TextDocumentEventArgs
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
Workspaces\WorkspaceTests_EditorFeatures.cs (4)
877var documentOpenedEventHandler = openWaiter.Wrap<TextDocumentEventArgs>( 881var documentClosedEventHandler = closeWaiter.Wrap<TextDocumentEventArgs>( 938var documentOpenedEventHandler = openWaiter.Wrap<TextDocumentEventArgs>( 942var documentClosedEventHandler = closeWaiter.Wrap<TextDocumentEventArgs>(
Microsoft.CodeAnalysis.Features (2)
SolutionCrawler\WorkCoordinator.cs (2)
264private void OnTextDocumentOpened(object? sender, TextDocumentEventArgs e) 270private void OnTextDocumentClosed(object? sender, TextDocumentEventArgs e)
Microsoft.CodeAnalysis.Workspaces (5)
ExternalAccess\UnitTesting\Api\UnitTestingTextDocumentEventArgsWrapper.cs (2)
12internal TextDocumentEventArgs UnderlyingObject { get; } 16public UnitTestingTextDocumentEventArgsWrapper(TextDocumentEventArgs underlyingObject)
ExternalAccess\UnitTesting\Api\UnitTestingWorkspaceExtensions.cs (1)
22private readonly EventHandler<TextDocumentEventArgs> _handler;
Workspace\Workspace_Events.cs (2)
129public event EventHandler<TextDocumentEventArgs> TextDocumentOpened 188public event EventHandler<TextDocumentEventArgs> TextDocumentClosed