Interface IName
Represents an interface for a name (e.g. class, method ...) of code file.
public interface IName : IEquatable<IName>
- Inherited Members
Properties
Name
Gets the name.
string Name { get; }
Property Value
Names
Gets the sub names, e.g. methods of a class.
IEnumerable<IName> Names { get; }
Property Value
Position
Gets the position of the name definition.
TextPosition Position { get; }
Property Value
Type
Gets the type.
CompletionType Type { get; }