1 write to _socketPath
Aspire.Hosting.RemoteHost (1)
JsonRpcServer.cs (1)
44
_socketPath
= socketPath;
12 references to _socketPath
Aspire.Hosting.RemoteHost (12)
JsonRpcServer.cs (12)
49
_logger.LogInformation("Starting RemoteAppHost JsonRpc Server on {SocketPath}...",
_socketPath
);
66
_logger.LogInformation("Starting JsonRpc server on named pipe: {SocketPath}",
_socketPath
);
88
_socketPath
,
122
_logger.LogInformation("Starting JsonRpc server on Unix domain socket: {SocketPath}",
_socketPath
);
125
if (File.Exists(
_socketPath
))
127
File.Delete(
_socketPath
);
131
var directory = Path.GetDirectoryName(
_socketPath
);
137
var endpoint = new UnixDomainSocketEndPoint(
_socketPath
);
145
File.SetUnixFileMode(
_socketPath
, UnixFileMode.UserRead | UnixFileMode.UserWrite);
282
if (File.Exists(
_socketPath
))
286
File.Delete(
_socketPath
);
290
_logger.LogWarning(ex, "Failed to delete socket file: {SocketPath}",
_socketPath
);