1 implementation of IRemoteEditAndContinueService
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\EditAndContinue\RemoteEditAndContinueService.cs (1)
19internal sealed class RemoteEditAndContinueService : BrokeredServiceBase, IRemoteEditAndContinueService
26 references to IRemoteEditAndContinueService
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\Remote\RemoteDebuggingSessionProxy.cs (8)
32await client.TryInvokeAsync<IRemoteEditAndContinueService>( 47await client.TryInvokeAsync<IRemoteEditAndContinueService>( 69var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, EmitSolutionUpdateResults.Data>( 94await client.TryInvokeAsync<IRemoteEditAndContinueService>( 109await client.TryInvokeAsync<IRemoteEditAndContinueService>( 123var result = await client.TryInvokeAsync<IRemoteEditAndContinueService>( 138var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<ImmutableArray<ActiveStatementSpan>>>( 160var result = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<ActiveStatementSpan>>(
EditAndContinue\Remote\RemoteEditAndContinueServiceProxy.cs (6)
21/// Facade used to call remote <see cref="IRemoteEditAndContinueService"/> methods. 27[ExportRemoteServiceCallbackDispatcher(typeof(IRemoteEditAndContinueService)), Shared] 30internal sealed class CallbackDispatcher() : RemoteServiceCallbackDispatcher, IRemoteEditAndContinueService.ICallback 137var connection = client.CreateConnection<IRemoteEditAndContinueService>( 169var diagnosticData = await client.TryInvokeAsync<IRemoteEditAndContinueService, ImmutableArray<DiagnosticData>>( 187await client.TryInvokeAsync<IRemoteEditAndContinueService>(
Microsoft.CodeAnalysis.Remote.ServiceHub (10)
Services\EditAndContinue\RemoteEditAndContinueService.cs (10)
21internal sealed class Factory : FactoryBase<IRemoteEditAndContinueService, IRemoteEditAndContinueService.ICallback> 23protected override IRemoteEditAndContinueService CreateService(in ServiceConstructionArguments arguments, RemoteCallback<IRemoteEditAndContinueService.ICallback> callback) 29private readonly RemoteCallback<IRemoteEditAndContinueService.ICallback> _callback; 32public ManagedEditAndContinueDebuggerService(RemoteCallback<IRemoteEditAndContinueService.ICallback> callback, RemoteServiceCallbackId callbackId) 53private readonly RemoteCallback<IRemoteEditAndContinueService.ICallback> _callback; 56public SourceTextProvider(RemoteCallback<IRemoteEditAndContinueService.ICallback> callback, RemoteServiceCallbackId callbackId) 66private readonly RemoteCallback<IRemoteEditAndContinueService.ICallback> _callback; 68public RemoteEditAndContinueService(in ServiceConstructionArguments arguments, RemoteCallback<IRemoteEditAndContinueService.ICallback> callback)
Microsoft.CodeAnalysis.Remote.Workspaces (2)
ServiceDescriptors.cs (2)
67(typeof(IRemoteEditAndContinueService), typeof(IRemoteEditAndContinueService.ICallback)),