Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

BlockLineRange Structure

 

Represents the line range data for a code block. 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)

public value struct BlockLineRange : IEquatable<BlockLineRange>, 
	IComparable<BlockLineRange>

NameDescription
System_CAPS_pubpropertyBlockIndex

Gets the index of the code block. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubpropertyEndColumn

Gets the number of the last column of the code block. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubpropertyEndLine

Gets the number of the end line of the code block. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubpropertyIsValid

Returns a value that indicates whether the code block is valid. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubpropertySourceFile

Gets the source file. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubpropertyStartColumn

Gets the number of the starting column for the code block. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

System_CAPS_pubpropertyStartLine

Gets the starting line for the code block. The set accessor is internal only. This class and its members are reserved for internal use and are not intended to be used in your code.

NameDescription
System_CAPS_pubmethodCompareTo(BlockLineRange)

Compares a code block with the current code block.

System_CAPS_pubmethodEquals(BlockLineRange)

Determines whether the provided code block is equal to the current code block.

System_CAPS_pubmethodEquals(Object^)
System_CAPS_pubmethodGetHashCode()
System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from ValueType.)

NameDescription
System_CAPS_puboperatorSystem_CAPS_staticEquality(BlockLineRange, BlockLineRange)

Determines whether two code block line range objects are equal in code that uses the equality operator (==).

System_CAPS_puboperatorSystem_CAPS_staticGreaterThan(BlockLineRange, BlockLineRange)

Determines whether the first of two code block line range objects is greater than the second object when using the greater-than operator (>).

System_CAPS_puboperatorSystem_CAPS_staticInequality(BlockLineRange, BlockLineRange)

Determines whether two code block line range objects are not equal when using the inequality operator (!=).

System_CAPS_puboperatorSystem_CAPS_staticLessThan(BlockLineRange, BlockLineRange)

Determines whether the first of two code block line range objects is less than the second object when using the less-than operator (<).

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

Return to top
Show: