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
'Declaration
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
public CoverageDSPriv..::..LinesRow AddLinesRow(
uint LnStart,
uint ColStart,
uint LnEnd,
uint ColEnd,
uint Coverage,
uint SourceFileID,
CoverageDSPriv..::..MethodRow parentMethodRowByMethod_Lines,
uint LineID
)
public:
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
)
member AddLinesRow :
LnStart:uint32 *
ColStart:uint32 *
LnEnd:uint32 *
ColEnd:uint32 *
Coverage:uint32 *
SourceFileID:uint32 *
parentMethodRowByMethod_Lines:CoverageDSPriv..::..MethodRow *
LineID:uint32 -> CoverageDSPriv..::..LinesRow
public function AddLinesRow(
LnStart : uint,
ColStart : uint,
LnEnd : uint,
ColEnd : uint,
Coverage : uint,
SourceFileID : uint,
parentMethodRowByMethod_Lines : CoverageDSPriv..::..MethodRow,
LineID : uint
) : 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.
- LnEnd
Type: System.UInt32
The index of the ending 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.
- parentMethodRowByMethod_Lines
Type: Microsoft.VisualStudio.Coverage.Analysis.CoverageDSPriv.MethodRow
The corresponding CoverageDSPriv.MethodRow that has information about the method.
- LineID
Type: System.UInt32
The ID for the lines row.
Return Value
Type: Microsoft.VisualStudio.Coverage.Analysis.CoverageDSPriv.LinesRow
A new CoverageDSPriv.LinesRow.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
CoverageDSPriv.LinesDataTable Class