<PackageReference Include="SSH.NET" Version="2016.1.0-beta4" />
ExceptionEventArgs
Provides data for the ErrorOccured events.
using System;
namespace Renci.
SshNet.
Common
{
public class ExceptionEventArgs :
EventArgs
{
public Exception Exception { get; set; }
public ExceptionEventArgs(
Exception exception)
{
Exception =
exception;
}
}
}