3 implementations of SocketPath
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
78public string SocketPath { get; }
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
672public string SocketPath => _inner.SocketPath;
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
21public string SocketPath { get; set; } = "/tmp/test.sock";
4 references to SocketPath
aspire (4)
Backchannel\OrphanedAppHostCollector.cs (2)
64AppHostHelper.TryDeleteSocketFile(connection.SocketPath, logger); 82logger.LogDebug(ex, "Error while collecting orphaned AppHost at {SocketPath}.", connection.SocketPath);
Commands\StopCommand.cs (2)
309.Where(result => result.Success && result.Connection is not null && matchingSocketPathSet.Contains(result.Connection.SocketPath)) 516AppHostHelper.TryDeleteSocketFile(connection.SocketPath, _logger);