Show / Hide Table of Contents

Class domainBaseVisitor<Result>

This class provides an empty implementation of IdomainVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.

Inheritance
System.Object
domainBaseVisitor<Result>
Implements
IdomainVisitor<Result>
IParseTreeVisitor<Result>
Namespace: GCore.Antlr.Grammers.Rfc1035
Assembly: Rfc1035.dll
Syntax
public class domainBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, IdomainVisitor<Result>, IParseTreeVisitor<Result>
Type Parameters
Name Description
Result

The return type of the visit operation.

Methods

| Improve this Doc View Source

VisitDomain(domainParser.DomainContext)

Visit a parse tree produced by domain().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitDomain(domainParser.DomainContext context)
Parameters
Type Name Description
domainParser.DomainContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSubdomain(domainParser.SubdomainContext)

Visit a parse tree produced by subdomain().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSubdomain(domainParser.SubdomainContext context)
Parameters
Type Name Description
domainParser.SubdomainContext context

The parse tree.

Returns
Type Description
Result

Implements

IdomainVisitor<Result>
IParseTreeVisitor<>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX