Class Location
Represents a source code location marking its beginnig and end.
Inheritance
System.Object
Location
Implements
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 SourceBeginColumn
the line where the location ends
Declaration
public uint BeginColumn { get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |
BeginFile
the file where the location begins
Declaration
public string BeginFile { get; set; }
Property Value
Type | Description |
---|---|
System.String |
BeginLine
the line where the location begins
Declaration
public uint BeginLine { get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |
EndColumn
the column where the location ends
Declaration
public uint EndColumn { get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |
EndFile
the file where the location ends
Declaration
public string EndFile { get; set; }
Property Value
Type | Description |
---|---|
System.String |
EndLine
the column where the location begins
Declaration
public uint EndLine { get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |