Show / Hide Table of Contents

Class UpnpBaseVisitor<Result>

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

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

The return type of the visit operation.

Methods

| Improve this Doc View Source

VisitEscapedQuote(UpnpParser.EscapedQuoteContext)

Visit a parse tree produced by escapedQuote().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitEscapedQuote(UpnpParser.EscapedQuoteContext context)
Parameters
Type Name Description
UpnpParser.EscapedQuoteContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitQuotedVal(UpnpParser.QuotedValContext)

Visit a parse tree produced by quotedVal().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitQuotedVal(UpnpParser.QuotedValContext context)
Parameters
Type Name Description
UpnpParser.QuotedValContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitRelExp(UpnpParser.RelExpContext)

Visit a parse tree produced by relExp().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitRelExp(UpnpParser.RelExpContext context)
Parameters
Type Name Description
UpnpParser.RelExpContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSearchCrit(UpnpParser.SearchCritContext)

Visit a parse tree produced by searchCrit().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSearchCrit(UpnpParser.SearchCritContext context)
Parameters
Type Name Description
UpnpParser.SearchCritContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSearchExp(UpnpParser.SearchExpContext)

Visit a parse tree produced by searchExp().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSearchExp(UpnpParser.SearchExpContext context)
Parameters
Type Name Description
UpnpParser.SearchExpContext context

The parse tree.

Returns
Type Description
Result

Implements

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