SshIdentificationEventArgs
Provides data for the ServerIdentificationReceived events.
using Renci.SshNet.Connection;
using System;
namespace Renci.SshNet.Common
{
public class SshIdentificationEventArgs : EventArgs
{
public SshIdentification SshIdentification { get; set; }
public SshIdentificationEventArgs(SshIdentification sshIdentification)
{
SshIdentification = sshIdentification;
}
}
}