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