Show / Hide Table of Contents

Class AttributeStatementSyntax

Inheritance
System.Object
SyntaxNode
StatementSyntax
AttributeStatementSyntax
Inherited Members
StatementSyntax.TerminatingSemicolonToken
SyntaxNode.IsParsed
SyntaxNode.ToString()
SyntaxNode.Write(TextWriter)
Namespace: DotLang.CodeAnalysis.Syntax
Assembly: DotLang.dll
Syntax
public sealed class AttributeStatementSyntax : StatementSyntax

Constructors

| Improve this Doc View Source

AttributeStatementSyntax(AttributeKeyword, AttributeListSyntax)

Declaration
public AttributeStatementSyntax(AttributeKeyword keyword, AttributeListSyntax attributes)
Parameters
Type Name Description
AttributeKeyword keyword
AttributeListSyntax attributes
| Improve this Doc View Source

AttributeStatementSyntax(AttributeKeyword, AttributeSyntax[])

Declaration
public AttributeStatementSyntax(AttributeKeyword keyword, params AttributeSyntax[] attributes)
Parameters
Type Name Description
AttributeKeyword keyword
AttributeSyntax[] attributes
| Improve this Doc View Source

AttributeStatementSyntax(AttributeKeyword, IEnumerable<AttributeSyntax>)

Declaration
public AttributeStatementSyntax(AttributeKeyword keyword, IEnumerable<AttributeSyntax> attributes)
Parameters
Type Name Description
AttributeKeyword keyword
System.Collections.Generic.IEnumerable<AttributeSyntax> attributes

Properties

| Improve this Doc View Source

Attributes

Declaration
public AttributeListSyntax Attributes { get; }
Property Value
Type Description
AttributeListSyntax
| Improve this Doc View Source

KeywordToken

Declaration
public SyntaxToken KeywordToken { get; }
Property Value
Type Description
SyntaxToken

Methods

| Improve this Doc View Source

Accept(SyntaxVisitor)

Declaration
public override void Accept(SyntaxVisitor visitor)
Parameters
Type Name Description
SyntaxVisitor visitor
Overrides
SyntaxNode.Accept(SyntaxVisitor)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX