Show / Hide Table of Contents

Class Location

Represents a source code location marking its beginnig and end.

Inheritance
System.Object
Location
Implements
IClingoObject
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ClingoSharp.CoreServices.Types
Assembly: ClingoSharp.CoreServices.dll
Syntax
public sealed class Location : IClingoObject
Remarks

Not all locations refer to physical files. By convention, such locations use a name put in angular brackets as filename.

Properties

| Improve this Doc View Source

BeginColumn

the line where the location ends

Declaration
public uint BeginColumn { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

BeginFile

the file where the location begins

Declaration
public string BeginFile { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

BeginLine

the line where the location begins

Declaration
public uint BeginLine { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

EndColumn

the column where the location ends

Declaration
public uint EndColumn { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

EndFile

the file where the location ends

Declaration
public string EndFile { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

EndLine

the column where the location begins

Declaration
public uint EndLine { get; set; }
Property Value
Type Description
System.UInt32

Implements

IClingoObject
  • Improve this Doc
  • View Source
Back to top Generated by DocFX