C# Class Microsoft.Cci.DerivedSourceLocation

A range of source text that corresponds to an identifiable entity.
Inheritance: SourceLocation, IDerivedSourceLocation
Show file Open project: visualmutator/visualmutator Class Usage Examples

Private Properties

Property Type Description
ObjectInvariant void

Public Methods

Method Description
DerivedSourceLocation ( IDerivedSourceDocument derivedSourceDocument, int startIndex, int length ) : System

Allocates a range of source text that corresponds to an identifiable entity.

Private Methods

Method Description
ObjectInvariant ( ) : void

Method Details

DerivedSourceLocation() public method

Allocates a range of source text that corresponds to an identifiable entity.
public DerivedSourceLocation ( IDerivedSourceDocument derivedSourceDocument, int startIndex, int length ) : System
derivedSourceDocument IDerivedSourceDocument The document containing the source text of which this location is a subrange.
startIndex int The character index of the first character of this location, when treating the source document as a single string.
length int The number of characters in this source location.
return System