Share via


CoverageDSPriv.MethodDataTable.AddMethodRow Method (String, String, String, UInt32, UInt32, UInt32, UInt32, UInt32, CoverageDSPriv.ClassRow)

 

Adds a CoverageDSPriv.MethodRow that contains the provided values. This class and its members are reserved for internal use and are not intended to be used in your code.

Namespace:   Microsoft.VisualStudio.Coverage.Analysis
Assembly:  Microsoft.VisualStudio.Coverage.Analysis (in Microsoft.VisualStudio.Coverage.Analysis.dll)

Syntax

[DebuggerNonUserCodeAttribute]
public CoverageDSPriv.MethodRow AddMethodRow(
    string MethodKeyName,
    string MethodName,
    string MethodFullName,
    uint LinesCovered,
    uint LinesPartiallyCovered,
    uint LinesNotCovered,
    uint BlocksCovered,
    uint BlocksNotCovered,
    CoverageDSPriv.ClassRow parentClassRowByClass_Method
)
public:
[DebuggerNonUserCodeAttribute]
CoverageDSPriv::MethodRow^ AddMethodRow(
    String^ MethodKeyName,
    String^ MethodName,
    String^ MethodFullName,
    unsigned int LinesCovered,
    unsigned int LinesPartiallyCovered,
    unsigned int LinesNotCovered,
    unsigned int BlocksCovered,
    unsigned int BlocksNotCovered,
    CoverageDSPriv::ClassRow^ parentClassRowByClass_Method
)
[<DebuggerNonUserCodeAttribute>]
member AddMethodRow : 
        MethodKeyName:string *
        MethodName:string *
        MethodFullName:string *
        LinesCovered:uint32 *
        LinesPartiallyCovered:uint32 *
        LinesNotCovered:uint32 *
        BlocksCovered:uint32 *
        BlocksNotCovered:uint32 *
        parentClassRowByClass_Method:CoverageDSPriv.ClassRow -> CoverageDSPriv.MethodRow
<DebuggerNonUserCodeAttribute>
Public Function AddMethodRow (
    MethodKeyName As String,
    MethodName As String,
    MethodFullName As String,
    LinesCovered As UInteger,
    LinesPartiallyCovered As UInteger,
    LinesNotCovered As UInteger,
    BlocksCovered As UInteger,
    BlocksNotCovered As UInteger,
    parentClassRowByClass_Method As CoverageDSPriv.ClassRow
) As CoverageDSPriv.MethodRow

Parameters

  • MethodFullName
    Type: System.String

    The full name of the method.

  • LinesCovered
    Type: System.UInt32

    The number of method code lines that are covered by the analysis.

  • LinesPartiallyCovered
    Type: System.UInt32

    The number of method code lines that are partially covered by the analysis.

  • LinesNotCovered
    Type: System.UInt32

    The number of method code lines that are not covered by the analysis.

  • BlocksCovered
    Type: System.UInt32

    The number of method code blocks that are covered by the analysis.

  • BlocksNotCovered
    Type: System.UInt32

    The number of method code blocks that are not covered by the analysis.

Return Value

Type: Microsoft.VisualStudio.Coverage.Analysis.CoverageDSPriv.MethodRow

The method row that was added.

See Also

CoverageDSPriv.ClassRow
AddMethodRow Overload
CoverageDSPriv.MethodDataTable Class
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top