ZPT-Sharp
v1.0.0
Zope Page Templates for .NET
|
Implementation of IContextVisitor which performs TAL-related functionality. More...
Public Member Functions | |
override IRenderingContext[] | Visit (IRenderingContext context) |
Visit the given context and return a collection of the resultant contexts. More... | |
override IRenderingContext[] | VisitRecursively (IRenderingContext context) |
Visit the given context, as well as its child contexts, and return a collection of the resultant contexts. More... | |
TalVisitor () | |
Initializes a new instance of the CSF.Zpt.Tal.TalVisitor class. More... | |
TalVisitor (IAttributeHandler[] handlers=null, IAttributeHandler errorHandler=null) | |
Initializes a new instance of the CSF.Zpt.Tal.TalVisitor class. More... | |
![]() | |
virtual IRenderingContext[] | VisitContext (IRenderingContext context) |
Visits a rendering context and returns a collection of contexts which represent the result of that visit. More... | |
Implementation of IContextVisitor which performs TAL-related functionality.
|
inline |
Initializes a new instance of the CSF.Zpt.Tal.TalVisitor class.
|
inline |
Initializes a new instance of the CSF.Zpt.Tal.TalVisitor class.
handlers | A collection of IAttributeHandler to process. |
errorHandler | An IAttributeHandler which should be used to handle any errors. |
|
inlinevirtual |
Visit the given context and return a collection of the resultant contexts.
context | The rendering context to visit. |
Implements CSF.Zpt.Rendering.ContextVisitorBase.
|
inlinevirtual |
Visit the given context, as well as its child contexts, and return a collection of the resultant contexts.
This operation performs the same work as Visit, but it then visits all of the resultant contexts, recursively moving down the exposed document tree, visiting each context in turn.
In this implementation, the visit additionally provides error-handling via the TAL on-error attribute.
context | The rendering context to visit. |
Reimplemented from CSF.Zpt.Rendering.ContextVisitorBase.