< Summary

Information
Class: Renci.SshNet.Messages.Connection.ChannelOpenInfo
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Messages\Connection\ChannelOpen\ChannelOpenInfo.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 32
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
LoadData()100%1100%
SaveData()100%1100%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Messages\Connection\ChannelOpen\ChannelOpenInfo.cs

#LineLine coverage
 1using Renci.SshNet.Common;
 2
 3namespace Renci.SshNet.Messages.Connection
 4{
 5    /// <summary>
 6    /// Base class for open channel messages.
 7    /// </summary>
 8    public abstract class ChannelOpenInfo : SshData
 9    {
 10        /// <summary>
 11        /// Gets the type of the channel to open.
 12        /// </summary>
 13        /// <value>
 14        /// The type of the channel to open.
 15        /// </value>
 16        public abstract string ChannelType { get; }
 17
 18        /// <summary>
 19        /// Called when type specific data need to be loaded.
 20        /// </summary>
 21        protected override void LoadData()
 1422        {
 1423        }
 24
 25        /// <summary>
 26        /// Called when type specific data need to be saved.
 27        /// </summary>
 28        protected override void SaveData()
 219329        {
 219330        }
 31    }
 32}

Methods/Properties

LoadData()
SaveData()