Share via


CoverageDSPriv.NamespaceTableDataTable.AddNamespaceTableRow Method (UInt32, UInt32, UInt32, UInt32, UInt32, CoverageDSPriv.ModuleRow, String, String)

 

Adds a new namespace table row to this data table 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.NamespaceTableRow AddNamespaceTableRow(
    uint BlocksCovered,
    uint BlocksNotCovered,
    uint LinesCovered,
    uint LinesNotCovered,
    uint LinesPartiallyCovered,
    CoverageDSPriv.ModuleRow parentModuleRowByModule_Namespace,
    string NamespaceKeyName,
    string NamespaceName
)
public:
[DebuggerNonUserCodeAttribute]
CoverageDSPriv::NamespaceTableRow^ AddNamespaceTableRow(
    unsigned int BlocksCovered,
    unsigned int BlocksNotCovered,
    unsigned int LinesCovered,
    unsigned int LinesNotCovered,
    unsigned int LinesPartiallyCovered,
    CoverageDSPriv::ModuleRow^ parentModuleRowByModule_Namespace,
    String^ NamespaceKeyName,
    String^ NamespaceName
)
[<DebuggerNonUserCodeAttribute>]
member AddNamespaceTableRow : 
        BlocksCovered:uint32 *
        BlocksNotCovered:uint32 *
        LinesCovered:uint32 *
        LinesNotCovered:uint32 *
        LinesPartiallyCovered:uint32 *
        parentModuleRowByModule_Namespace:CoverageDSPriv.ModuleRow *
        NamespaceKeyName:string *
        NamespaceName:string -> CoverageDSPriv.NamespaceTableRow
<DebuggerNonUserCodeAttribute>
Public Function AddNamespaceTableRow (
    BlocksCovered As UInteger,
    BlocksNotCovered As UInteger,
    LinesCovered As UInteger,
    LinesNotCovered As UInteger,
    LinesPartiallyCovered As UInteger,
    parentModuleRowByModule_Namespace As CoverageDSPriv.ModuleRow,
    NamespaceKeyName As String,
    NamespaceName As String
) As CoverageDSPriv.NamespaceTableRow

Parameters

  • BlocksCovered
    Type: System.UInt32

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

  • BlocksNotCovered
    Type: System.UInt32

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

  • LinesCovered
    Type: System.UInt32

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

  • LinesNotCovered
    Type: System.UInt32

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

  • LinesPartiallyCovered
    Type: System.UInt32

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

  • NamespaceKeyName
    Type: System.String

    The key name for the namespace.

Return Value

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

The added namespace table row.

See Also

CoverageDSPriv.NamespaceTableRow
AddNamespaceTableRow Overload
CoverageDSPriv.NamespaceTableDataTable Class
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top