1 write to _socketPath
Aspire.Hosting.RemoteHost (1)
JsonRpcServer.cs (1)
46
_socketPath
= socketPath;
12 references to _socketPath
Aspire.Hosting.RemoteHost (12)
JsonRpcServer.cs (12)
51
_logger.LogInformation("Starting RemoteAppHost JsonRpc Server on {SocketPath}...",
_socketPath
);
80
_logger.LogInformation("Starting JsonRpc server on named pipe: {SocketPath}",
_socketPath
);
102
_socketPath
,
138
_logger.LogInformation("Starting JsonRpc server on Unix domain socket: {SocketPath}",
_socketPath
);
141
if (File.Exists(
_socketPath
))
143
File.Delete(
_socketPath
);
147
var directory = Path.GetDirectoryName(
_socketPath
);
153
var endpoint = new UnixDomainSocketEndPoint(
_socketPath
);
161
File.SetUnixFileMode(
_socketPath
, UnixFileMode.UserRead | UnixFileMode.UserWrite);
313
if (File.Exists(
_socketPath
))
317
File.Delete(
_socketPath
);
321
_logger.LogWarning(ex, "Failed to delete socket file: {SocketPath}",
_socketPath
);