CoverageInfo.BuildDataSet Method (Boolean, IEnumerable<Guid>)
Builds a CoverageDS data set by using the provided indication of whether to build a summary data set on the provided list of tests. 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
)
public:
CoverageDS^ BuildDataSet(
bool summaryOnly,
IEnumerable<Guid>^ tests
)
member BuildDataSet :
summaryOnly:bool *
tests:IEnumerable<Guid> -> CoverageDS
Public Function BuildDataSet (
summaryOnly As Boolean,
tests As IEnumerable(Of Guid)
) As CoverageDS
Parameters
summaryOnly
Type: System.Booleantrue 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.
tests
Type: System.Collections.Generic.IEnumerable<Guid>A list of GUIDs for the tests to use to build the data set.
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