< Summary

Information
Class: Renci.SshNet.ExpectAsyncResult
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\ExpectAsyncResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 22
Line coverage: 0%
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%10%

File(s)

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

#LineLine coverage
 1using System;
 2
 3using Renci.SshNet.Common;
 4
 5namespace Renci.SshNet
 6{
 7    /// <summary>
 8    /// Provides additional information for asynchronous command execution.
 9    /// </summary>
 10    public class ExpectAsyncResult : AsyncResult<string>
 11    {
 12        /// <summary>
 13        /// Initializes a new instance of the <see cref="ExpectAsyncResult" /> class.
 14        /// </summary>
 15        /// <param name="asyncCallback">The async callback.</param>
 16        /// <param name="state">The state.</param>
 17        internal ExpectAsyncResult(AsyncCallback asyncCallback, object state)
 018            : base(asyncCallback, state)
 019        {
 020        }
 21    }
 22}