CoverageDSPriv.LinesDataTable.AddLinesRow Method (UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, CoverageDSPriv.MethodRow, UInt32)

 

Adds a CoverageDSPriv.LinesRow to this table by using 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.LinesRow AddLinesRow(
    uint LnStart,
    uint ColStart,
    uint LnEnd,
    uint ColEnd,
    uint Coverage,
    uint SourceFileID,
    CoverageDSPriv.MethodRow parentMethodRowByMethod_Lines,
    uint LineID
)
public:
[DebuggerNonUserCodeAttribute]
CoverageDSPriv::LinesRow^ AddLinesRow(
    unsigned int LnStart,
    unsigned int ColStart,
    unsigned int LnEnd,
    unsigned int ColEnd,
    unsigned int Coverage,
    unsigned int SourceFileID,
    CoverageDSPriv::MethodRow^ parentMethodRowByMethod_Lines,
    unsigned int LineID
)
[<DebuggerNonUserCodeAttribute>]
member AddLinesRow : 
        LnStart:uint32 *
        ColStart:uint32 *
        LnEnd:uint32 *
        ColEnd:uint32 *
        Coverage:uint32 *
        SourceFileID:uint32 *
        parentMethodRowByMethod_Lines:CoverageDSPriv.MethodRow *
        LineID:uint32 -> CoverageDSPriv.LinesRow
<DebuggerNonUserCodeAttribute>
Public Function AddLinesRow (
    LnStart As UInteger,
    ColStart As UInteger,
    LnEnd As UInteger,
    ColEnd As UInteger,
    Coverage As UInteger,
    SourceFileID As UInteger,
    parentMethodRowByMethod_Lines As CoverageDSPriv.MethodRow,
    LineID As UInteger
) As CoverageDSPriv.LinesRow

Parameters

  • LnStart
    Type: System.UInt32

    The index of the starting code line.

  • ColStart
    Type: System.UInt32

    The index of the first character in the code line.

  • ColEnd
    Type: System.UInt32

    The index of the ending character in the last code line.

  • Coverage
    Type: System.UInt32

    A number that indicates the level of coverage.

  • SourceFileID
    Type: System.UInt32

    The ID for the code source file.

Return Value

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

A new CoverageDSPriv.LinesRow.

See Also

CoverageDSPriv.LinesRow
AddLinesRow Overload
CoverageDSPriv.LinesDataTable Class
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top