LoopStatementAst Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initialize the properties common to all loop statements.
protected:
LoopStatementAst(System::Management::Automation::Language::IScriptExtent ^ extent, System::String ^ label, System::Management::Automation::Language::PipelineBaseAst ^ condition, System::Management::Automation::Language::StatementBlockAst ^ body);
protected LoopStatementAst (System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst condition, System.Management.Automation.Language.StatementBlockAst body);
new System.Management.Automation.Language.LoopStatementAst : System.Management.Automation.Language.IScriptExtent * string * System.Management.Automation.Language.PipelineBaseAst * System.Management.Automation.Language.StatementBlockAst -> System.Management.Automation.Language.LoopStatementAst
Protected Sub New (extent As IScriptExtent, label As String, condition As PipelineBaseAst, body As StatementBlockAst)
Parameters
- extent
- IScriptExtent
The extent of the statement.
- label
- String
The optionally null label for the statement.
- condition
- PipelineBaseAst
The optionally null pipeline for the condition test of the statement.
- body
- StatementBlockAst
The body of the statement.
Exceptions
If extent
or body
is null.