[This is preliminary documentation and is subject to change.]
Abstract implementation of IYamlVisitor that knows how to walk a complete Yaml object model.
| C# | Visual Basic | Visual C++ |
public abstract class YamlVisitor : IYamlVisitor
Public MustInherit Class YamlVisitor _ Implements IYamlVisitor
public ref class YamlVisitor abstract : IYamlVisitor
| All Members | Constructors | Methods | |||
| Icon | Member | Description |
|---|---|---|
| YamlVisitor()()()() | Initializes a new instance of the YamlVisitor class | |
| Equals(Object) | (Inherited from Object.) | |
| Finalize()()()() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode()()()() | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType()()()() | Gets the type of the current instance. (Inherited from Object.) | |
| MemberwiseClone()()()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ToString()()()() | Returns a string that represents the current object. (Inherited from Object.) | |
| Visit(YamlStream) |
Called when this object is visiting a YamlStream.
| |
| Visit(YamlDocument) |
Called when this object is visiting a YamlDocument.
| |
| Visit(YamlScalarNode) |
Called when this object is visiting a YamlScalarNode.
| |
| Visit(YamlSequenceNode) |
Called when this object is visiting a YamlSequenceNode.
| |
| Visit(YamlMappingNode) |
Called when this object is visiting a YamlMappingNode.
| |
| VisitChildren(YamlStream) |
Visits every child of a YamlStream.
| |
| VisitChildren(YamlDocument) |
Visits every child of a YamlDocument.
| |
| VisitChildren(YamlSequenceNode) |
Visits every child of a YamlSequenceNode.
| |
| VisitChildren(YamlMappingNode) |
Visits every child of a YamlMappingNode.
| |
| Visited(YamlStream) |
Called after this object finishes visiting a YamlStream.
| |
| Visited(YamlDocument) |
Called after this object finishes visiting a YamlDocument.
| |
| Visited(YamlScalarNode) |
Called after this object finishes visiting a YamlScalarNode.
| |
| Visited(YamlSequenceNode) |
Called after this object finishes visiting a YamlSequenceNode.
| |
| Visited(YamlMappingNode) |
Called after this object finishes visiting a YamlMappingNode.
|
| Object | |
| YamlVisitor | |