< Summary

Information
Class: Renci.SshNet.Common.SshIdentificationEventArgs
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Common\SshIdentificationEventArgs.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 26
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor(...)100%1100%
get_SshIdentification()100%1100%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Common\SshIdentificationEventArgs.cs

#LineLine coverage
 1using System;
 2
 3using Renci.SshNet.Connection;
 4
 5namespace Renci.SshNet.Common
 6{
 7    /// <summary>
 8    /// Provides data for the ServerIdentificationReceived events.
 9    /// </summary>
 10    public class SshIdentificationEventArgs : EventArgs
 11    {
 12        /// <summary>
 13        /// Initializes a new instance of the <see cref="SshIdentificationEventArgs"/> class.
 14        /// </summary>
 15        /// <param name="sshIdentification">The SSH identification.</param>
 123516        public SshIdentificationEventArgs(SshIdentification sshIdentification)
 123517        {
 123518            SshIdentification = sshIdentification;
 123519        }
 20
 21        /// <summary>
 22        /// Gets the SSH identification.
 23        /// </summary>
 132524        public SshIdentification SshIdentification { get; private set; }
 25    }
 26}