LineCoverageInfo Structure

 

Represents line coverage data that can be merged. 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 struct LineCoverageInfo : IEquatable<LineCoverageInfo>
public value struct LineCoverageInfo : IEquatable<LineCoverageInfo>
[<Sealed>]
type LineCoverageInfo = 
    struct
        interface IEquatable<LineCoverageInfo>
    end
Public Structure LineCoverageInfo
    Implements IEquatable(Of LineCoverageInfo)

Properties

Name Description
System_CAPS_pubproperty ColumnBegin

Gets the number of the starting column for the line coverage. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubproperty ColumnEnd

Gets the number of the ending column for the line coverage. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubproperty CoverageStatus

Gets or sets the status of this line coverage data. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubproperty LineBegin

Gets the number of the starting line for this line coverage data. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubproperty LineEnd

Gets the number of the ending line for this line coverage data. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubproperty SourceFileId

Gets the ID for the source file names record. This class and its members are reserved for internal use and are not intended to be used in your code.

Methods

Name Description
System_CAPS_pubmethod Equals(LineCoverageInfo)

Determines whether the provided object is equal to this line coverage info object. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubmethod Equals(Object)

Determines whether the provided object is equal to this line coverage info object. This class and its members are reserved for internal use and are not intended to be used in your code.(Overrides ValueType.Equals(Object).)

System_CAPS_pubmethod GetHashCode()

This class and its members are reserved for internal use and are not intended to be used in your code.(Overrides ValueType.GetHashCode().)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from ValueType.)

Operators

Name Description
System_CAPS_puboperatorSystem_CAPS_static Equality(LineCoverageInfo, LineCoverageInfo)

Determines whether two line coverage information objects are equal code compares the objects with the equality operator (==). This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_puboperatorSystem_CAPS_static Inequality(LineCoverageInfo, LineCoverageInfo)

Determines whether two line coverage info objects are not equal when using the inequality operator (!=). This class and its members are reserved for internal use and are not intended to be used in your code.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top