1 write to _socketPath
Aspire.Hosting.RemoteHost (1)
JsonRpcServer.cs (1)
48
_socketPath
= socketPath;
12 references to _socketPath
Aspire.Hosting.RemoteHost (12)
JsonRpcServer.cs (12)
53
_logger.LogInformation("Starting RemoteAppHost JsonRpc Server on {SocketPath}...",
_socketPath
);
70
_logger.LogInformation("Starting JsonRpc server on named pipe: {SocketPath}",
_socketPath
);
92
_socketPath
,
126
_logger.LogInformation("Starting JsonRpc server on Unix domain socket: {SocketPath}",
_socketPath
);
129
if (File.Exists(
_socketPath
))
131
File.Delete(
_socketPath
);
135
var directory = Path.GetDirectoryName(
_socketPath
);
141
var endpoint = new UnixDomainSocketEndPoint(
_socketPath
);
149
File.SetUnixFileMode(
_socketPath
, UnixFileMode.UserRead | UnixFileMode.UserWrite);
289
if (File.Exists(
_socketPath
))
293
File.Delete(
_socketPath
);
297
_logger.LogWarning(ex, "Failed to delete socket file: {SocketPath}",
_socketPath
);