3 implementations of SocketPath
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
78
public string
SocketPath
{ get; }
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
672
public string
SocketPath
=> _inner.SocketPath;
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
21
public string
SocketPath
{ get; set; } = "/tmp/test.sock";
4 references to SocketPath
aspire (4)
Backchannel\OrphanedAppHostCollector.cs (2)
64
AppHostHelper.TryDeleteSocketFile(connection.
SocketPath
, logger);
82
logger.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
))
516
AppHostHelper.TryDeleteSocketFile(connection.
SocketPath
, _logger);