3 implementations of ReportDesignerAttributeDataAsync
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\DesignerAttributeDiscovery\RemoteDesignerAttributeDiscoveryService.cs (1)
23public ValueTask ReportDesignerAttributeDataAsync(ImmutableArray<DesignerAttributeData> data, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices (1)
DesignerAttribute\VisualStudioDesignerAttributeService.cs (1)
314public ValueTask ReportDesignerAttributeDataAsync(ImmutableArray<DesignerAttributeData> data, CancellationToken cancellationToken)
Roslyn.VisualStudio.Next.UnitTests (1)
Services\ServiceHubServicesTests.cs (1)
227public ValueTask ReportDesignerAttributeDataAsync(ImmutableArray<DesignerAttributeData> infos, CancellationToken cancellationToken)
2 references to ReportDesignerAttributeDataAsync
Microsoft.CodeAnalysis.Features (2)
DesignerAttribute\DesignerAttributeDiscoveryService.cs (1)
211await callback.ReportDesignerAttributeDataAsync(changedData.SelectAsArray(d => d.data), cancellationToken).ConfigureAwait(false);
DesignerAttribute\IRemoteDesignerAttributeDiscoveryService.cs (1)
39=> GetCallback(callbackId).ReportDesignerAttributeDataAsync(data, cancellationToken);