Class AttributeSyntax
Inheritance
System.Object
AttributeSyntax
Assembly: DotLang.dll
Syntax
public sealed class AttributeSyntax : SyntaxNode, INameValueSyntax
Constructors
|
Improve this Doc
View Source
AttributeSyntax(String, String)
Declaration
public AttributeSyntax(string name, string value)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.String |
value |
|
|
Improve this Doc
View Source
AttributeSyntax((String Name, String Value))
Declaration
public AttributeSyntax((string Name, string Value) attribute)
Parameters
Type |
Name |
Description |
System.ValueTuple<System.String, System.String> |
attribute |
|
Properties
|
Improve this Doc
View Source
EqualsToken
Declaration
public SyntaxToken EqualsToken { get; }
Property Value
|
Improve this Doc
View Source
NameToken
Declaration
public SyntaxToken NameToken { get; }
Property Value
|
Improve this Doc
View Source
SeparatorToken
Declaration
public SyntaxToken SeparatorToken { get; }
Property Value
|
Improve this Doc
View Source
ValueToken
Declaration
public SyntaxToken ValueToken { get; }
Property Value
Methods
|
Improve this Doc
View Source
Accept(SyntaxVisitor)
Declaration
public override void Accept(SyntaxVisitor visitor)
Parameters
Overrides
Operators
|
Improve this Doc
View Source
Implicit((String Name, String Value) to AttributeSyntax)
Declaration
public static implicit operator AttributeSyntax((string Name, string Value) attribute)
Parameters
Type |
Name |
Description |
System.ValueTuple<System.String, System.String> |
attribute |
|
Returns
Implements