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

'Declaration
Public Structure LineCoverageInfo _
    Implements IEquatable(Of LineCoverageInfo)
public struct LineCoverageInfo : IEquatable<LineCoverageInfo>
public value class LineCoverageInfo : IEquatable<LineCoverageInfo>
[<Sealed>]
type LineCoverageInfo =  
    struct 
        interface IEquatable<LineCoverageInfo>
    end
JScript supports the use of structures, but not the declaration of new ones.

The LineCoverageInfo type exposes the following members.

Properties

  Name Description
Public property 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.
Public property 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.
Public property 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.
Public property 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.
Public property 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.
Public property 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.

Top

Methods

  Name Description
Public method 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).)
Public method 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.
Public method GetHashCode This class and its members are reserved for internal use and are not intended to be used in your code. (Overrides ValueType.GetHashCode.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method ToString Returns the fully qualified type name of this instance. (Inherited from ValueType.)

Top

Operators

  Name Description
Public operatorStatic member Equality 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.
Public operatorStatic member Inequality 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.

Top

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

Reference

Microsoft.VisualStudio.Coverage.Analysis Namespace