mirror of https://gitee.com/apiumc/Gateway.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.6 KiB
C#
71 lines
2.6 KiB
C#
using System;
|
|
using System.Threading;
|
|
|
|
namespace UMC.SshNet
|
|
{
|
|
/// <summary>
|
|
/// Provides additional information for asynchronous command execution.
|
|
/// </summary>
|
|
public class CommandAsyncResult : IAsyncResult
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CommandAsyncResult"/> class.
|
|
/// </summary>
|
|
internal CommandAsyncResult()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the bytes received. If SFTP only file bytes are counted.
|
|
/// </summary>
|
|
/// <value>Total bytes received.</value>
|
|
public int BytesReceived { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the bytes sent by SFTP.
|
|
/// </summary>
|
|
/// <value>Total bytes sent.</value>
|
|
public int BytesSent { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets a user-defined object that qualifies or contains information about an asynchronous operation.
|
|
/// </summary>
|
|
/// <returns>A user-defined object that qualifies or contains information about an asynchronous operation.</returns>
|
|
public object AsyncState { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Gets a <see cref="WaitHandle"/> that is used to wait for an asynchronous operation to complete.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A <see cref="WaitHandle"/> that is used to wait for an asynchronous operation to complete.
|
|
/// </returns>
|
|
public WaitHandle AsyncWaitHandle { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the asynchronous operation completed synchronously.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// true if the asynchronous operation completed synchronously; otherwise, false.
|
|
/// </returns>
|
|
public bool CompletedSynchronously { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the asynchronous operation has completed.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// true if the operation is complete; otherwise, false.
|
|
/// </returns>
|
|
public bool IsCompleted { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether <see cref="SshCommand.EndExecute(IAsyncResult)"/> was already called for this
|
|
/// <see cref="CommandAsyncResult"/>.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// <c>true</c> if <see cref="SshCommand.EndExecute(IAsyncResult)"/> was already called for this <see cref="CommandAsyncResult"/>;
|
|
/// otherwise, <c>false</c>.
|
|
/// </returns>
|
|
internal bool EndCalled { get; set; }
|
|
}
|
|
}
|