| 1234567891011121314 |
- namespace Renci.SshNet
- {
- public partial class Session
- {
- /// <summary>
- /// Gets a value indicating whether the socket is connected.
- /// </summary>
- /// <param name="isConnected"><c>true</c> if the socket is connected; otherwise, <c>false</c></param>
- partial void IsSocketConnected(ref bool isConnected)
- {
- isConnected = (_socket != null && _socket.Connected);
- }
- }
- }
|