1 implementation of IRemoteEditAndContinueService
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\EditAndContinue\RemoteEditAndContinueService.cs (1)
21internal sealed class RemoteEditAndContinueService : BrokeredServiceBase, IRemoteEditAndContinueService
27 references to IRemoteEditAndContinueService
Microsoft.CodeAnalysis.Features (15)
EditAndContinue\Remote\RemoteDebuggingSessionProxy.cs (9)
52var documentsToReanalyzeOpt = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<DocumentId>>( 77var documentsToReanalyzeOpt = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<DocumentId>>( 125var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, EmitSolutionUpdateResults.Data>( 185var documentsToReanalyzeOpt = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<DocumentId>>( 205await client.TryInvokeAsync<IRemoteEditAndContinueService>( 218var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, LinePositionSpan?>( 235var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, bool?>( 251var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<ImmutableArray<ActiveStatementSpan>>>( 273var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<ActiveStatementSpan>>(
EditAndContinue\Remote\RemoteEditAndContinueServiceProxy.cs (6)
22/// Facade used to call remote <see cref="IRemoteEditAndContinueService"/> methods. 28[ExportRemoteServiceCallbackDispatcher(typeof(IRemoteEditAndContinueService)), Shared] 29internal sealed class CallbackDispatcher : RemoteServiceCallbackDispatcher, IRemoteEditAndContinueService.ICallback 155var connection = client.CreateConnection<IRemoteEditAndContinueService>( 194var diagnosticData = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<DiagnosticData>>( 254await client.TryInvokeAsync<IRemoteEditAndContinueService>(
Microsoft.CodeAnalysis.Remote.ServiceHub (10)
Services\EditAndContinue\RemoteEditAndContinueService.cs (10)
23internal sealed class Factory : FactoryBase<IRemoteEditAndContinueService, IRemoteEditAndContinueService.ICallback> 25protected override IRemoteEditAndContinueService CreateService(in ServiceConstructionArguments arguments, RemoteCallback<IRemoteEditAndContinueService.ICallback> callback) 31private readonly RemoteCallback<IRemoteEditAndContinueService.ICallback> _callback; 34public ManagedEditAndContinueDebuggerService(RemoteCallback<IRemoteEditAndContinueService.ICallback> callback, RemoteServiceCallbackId callbackId) 55private readonly RemoteCallback<IRemoteEditAndContinueService.ICallback> _callback; 58public SourceTextProvider(RemoteCallback<IRemoteEditAndContinueService.ICallback> callback, RemoteServiceCallbackId callbackId) 68private readonly RemoteCallback<IRemoteEditAndContinueService.ICallback> _callback; 70public RemoteEditAndContinueService(in ServiceConstructionArguments arguments, RemoteCallback<IRemoteEditAndContinueService.ICallback> callback)
Microsoft.CodeAnalysis.Remote.Workspaces (2)
ServiceDescriptors.cs (2)
77(typeof(IRemoteEditAndContinueService), typeof(IRemoteEditAndContinueService.ICallback)),