In This Article

ISourceFileLocation Interface

Provides the base requirements of a source code file reference and related offsets within that file, generally used to denote where a type/member was defined.

public interface ISourceFileLocation : IKeyedObject

Properties

NavigationOffset

Gets the optional offset within the source code file where navigations to the definition should occur, generally the start of the type/member name.

int? NavigationOffset { get; }

Property Value

Nullable<Int32>:

The optional offset within the source code file where navigations to the definition should occur, generally the start of the type/member name.

TextRange

Gets the offset range within the source code file of the type/member definition.

TextRange TextRange { get; }

Property Value

TextRange:

The offset range within the source code file of the type/member definition.

Inherited Members