Class SubgraphStatementSyntax
  
  
  
  
    Inheritance
    System.Object
    
    
    SubgraphStatementSyntax
   
  
  
  
  Assembly: DotLang.dll
  Syntax
  
    public sealed class SubgraphStatementSyntax : StatementSyntax, IEdgeVertexStatementSyntax
   
  Constructors
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SubgraphStatementSyntax(StatementSyntax[])
  
  
  Declaration
  
    public SubgraphStatementSyntax(params StatementSyntax[] statements)
   
  Parameters
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SubgraphStatementSyntax(IEnumerable<StatementSyntax>)
  
  
  Declaration
  
    public SubgraphStatementSyntax(IEnumerable<StatementSyntax> statements = null)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.Collections.Generic.IEnumerable<StatementSyntax> | 
        statements | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SubgraphStatementSyntax(String, StatementSyntax[])
  
  
  Declaration
  
    public SubgraphStatementSyntax(string identifier, params StatementSyntax[] statements)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.String | 
        identifier | 
         | 
      
      
        | StatementSyntax[] | 
        statements | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SubgraphStatementSyntax(String, IEnumerable<StatementSyntax>)
  
  
  Declaration
  
    public SubgraphStatementSyntax(string identifier, IEnumerable<StatementSyntax> statements = null)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.String | 
        identifier | 
         | 
      
      
        | System.Collections.Generic.IEnumerable<StatementSyntax> | 
        statements | 
         | 
      
    
  
  Properties
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  CloseBraceToken
  
  
  Declaration
  
    public SyntaxToken CloseBraceToken { get; }
   
  Property Value
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  GraphTypeKeyword
  
  
  Declaration
  
    public SyntaxToken GraphTypeKeyword { get; }
   
  Property Value
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  IdentifierToken
  
  
  Declaration
  
    public SyntaxToken IdentifierToken { get; }
   
  Property Value
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  OpenBraceToken
  
  
  Declaration
  
    public SyntaxToken OpenBraceToken { get; }
   
  Property Value
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Statements
  
  
  Declaration
  
    public IReadOnlyList<StatementSyntax> Statements { get; }
   
  Property Value
  
  Methods
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Accept(SyntaxVisitor)
  
  
  Declaration
  
    public override void Accept(SyntaxVisitor visitor)
   
  Parameters
  
  Overrides
  
  Implements