2 implementations of SocketPath
aspire (1)
src\Shared\AppHostSocketManager.cs (1)
232public string SocketPath { get; } = socketPath;
Aspire.Cli.Tests (1)
TestServices\TestAppHostSocket.cs (1)
11public string SocketPath { get; } = socketPath;
14 references to SocketPath
aspire (11)
Backchannel\AppHostAuxiliaryBackchannel.cs (3)
76public string SocketPath => Socket.SocketPath; 181logger.LogDebug("Connecting to auxiliary backchannel at {SocketPath}", appHostSocket.SocketPath); 197logger.LogDebug("Connected to auxiliary backchannel at {SocketPath}", appHostSocket.SocketPath);
Backchannel\AppHostConnectionResolver.cs (1)
168logger.LogDebug(ex, "Failed to connect to socket at {SocketPath}", appHostSocket.SocketPath);
Backchannel\AuxiliaryBackchannelMonitor.cs (5)
374var currentSocketPaths = currentSockets.Select(socket => socket.SocketPath).ToHashSet(StringComparers.FileSystemPath); 379.Where(socket => !_knownSocketPaths.Contains(socket.SocketPath) || TryClaimRetry(socket.SocketPath)) 384logger.LogDebug("Socket created: {SocketPath}", newSocket.SocketPath); 449var socketPath = appHostSocket.SocketPath;
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
23string SocketPath => Socket.SocketPath;
src\Shared\AppHostSocketManager.cs (1)
279public string SocketPath => appHostSocket.SocketPath;
Aspire.Cli.Tests (3)
Backchannel\BackchannelConstantsTests.cs (2)
367.Select(socket => socket.SocketPath); 419.Select(socket => socket.SocketPath);
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
30get => Socket.SocketPath;