Skip to content

Commit

Permalink
Fixed missing XML comment warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
yallie committed Dec 8, 2024
1 parent 1789340 commit 2552117
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CoreRemoting/Channels/Websocket/WebsocketServerConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public WebsocketServerConnection(string clientAddress, HttpListenerWebSocketCont
WebSocket = websocket ?? throw new ArgumentNullException(nameof(websocket));
RemotingServer = remotingServer ?? throw new ArgumentNullException(nameof(remotingServer));
}
public string ClientAddress { get; private set; }

private string ClientAddress { get; set; }

private HttpListenerWebSocketContext WebSocketContext { get; set; }

Expand Down

0 comments on commit 2552117

Please sign in to comment.