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