Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Renci.SshNet/ISubsystemSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ namespace Renci.SshNet
internal interface ISubsystemSession : IDisposable
{
/// <summary>
/// Gets or set the number of seconds to wait for an operation to complete.
/// Gets or sets the number of milliseconds to wait for an operation to complete.
/// </summary>
/// <value>
/// The number of seconds to wait for an operation to complete, or <c>-1</c> to wait indefinitely.
/// The number of milliseconds to wait for an operation to complete, or <c>-1</c> to wait indefinitely.
/// </value>
int OperationTimeout { get; }
int OperationTimeout { get; set; }

/// <summary>
/// Gets a value indicating whether this session is open.
Expand Down
Loading