CoverageInfo.BuildDataSet Method (Boolean, IEnumerable<Guid>, IEnumerable<String>)

 

Builds a CoverageDS data set by using the provided indication of whether to build a summary, a list of tests, and a list of modules. 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

public CoverageDS BuildDataSet(
    bool summaryOnly,
    IEnumerable<Guid> tests,
    IEnumerable<string> modules
)
public:
CoverageDS^ BuildDataSet(
    bool summaryOnly,
    IEnumerable<Guid>^ tests,
    IEnumerable<String^>^ modules
)
member BuildDataSet : 
        summaryOnly:bool *
        tests:IEnumerable<Guid> *
        modules:IEnumerable<string> -> CoverageDS
Public Function BuildDataSet (
    summaryOnly As Boolean,
    tests As IEnumerable(Of Guid),
    modules As IEnumerable(Of String)
) As CoverageDS

Parameters

  • summaryOnly
    Type: System.Boolean

    true if only the modules that are referenced by the provided test information will be included in the data set; false to include all coverage data.

Return Value

Type: Microsoft.VisualStudio.Coverage.Analysis.CoverageDS

A CoverageDS data set.

See Also

CoverageDS
BuildDataSet Overload
CoverageInfo Class
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top