MergingRedirectionAst Class
Definition
The ast representing a redirection that merges 2 streams, e.g. dir 2>&1
public ref class MergingRedirectionAst : System::Management::Automation::Language::RedirectionAst
public class MergingRedirectionAst : System.Management.Automation.Language.RedirectionAst
type MergingRedirectionAst = class
inherit RedirectionAst
Public Class MergingRedirectionAst
Inherits RedirectionAst
- Inheritance
Constructors
MergingRedirectionAst(IScriptExtent, RedirectionStream, RedirectionStream) |
Construct a merging redirection. |
Properties
Extent |
The extent in the source this ast represents. (Inherited from Ast) |
FromStream |
The stream to read objects from. Objects are either merged with another stream, or written to a file. (Inherited from RedirectionAst) |
Parent |
The parent tree for this node. (Inherited from Ast) |
ToStream |
The stream that results will be written to. |
Methods
Copy() |
Copy the MergingRedirectionAst instance |
Find(Func<Ast,Boolean>, Boolean) |
Traverse the entire Ast, returning the first node in the tree for which |
FindAll(Func<Ast,Boolean>, Boolean) |
Traverse the entire Ast, returning all nodes in the tree for which |
SafeGetValue() |
Constructs the resultant object from the AST and returns it if it is safe. (Inherited from Ast) |
ToString() |
Formats the ast and returns a string. (Inherited from Ast) |
Visit(AstVisitor) |
Visit each node in the Ast, calling the methods in |
Visit(ICustomAstVisitor) |
Visit the Ast using a visitor that can choose how the tree traversal is performed. This visit method is for advanced uses of the visitor pattern where an AstVisitor is insufficient. (Inherited from Ast) |