File tree Expand file tree Collapse file tree 1 file changed +31
-7
lines changed
Expand file tree Collapse file tree 1 file changed +31
-7
lines changed Original file line number Diff line number Diff line change 11Until
22-----
3+
4+
5+
6+
37### Synopsis
48until keyword
59
10+
11+
612---
13+
14+
715### Description
816
917The until keyword simplifies event loops.
1018
1119until will always run at least once, and will run until a condition is true.
1220
21+
22+
1323---
24+
25+
1426### Examples
1527#### EXAMPLE 1
1628``` PowerShell
@@ -72,26 +84,38 @@ Invoke-PipeScript {
7284}
7385```
7486
87+
88+
7589---
90+
91+
7692### Parameters
7793#### ** CommandAst**
7894
79- > ** Type** : ``` [CommandAst] ```
8095
81- > ** Required** : true
8296
83- > ** Position** : named
8497
85- > ** PipelineInput** : true (ByValue)
98+ | Type | Required| Position| PipelineInput |
99+ | --------------| --------| --------| --------------|
100+ | ` [CommandAst] ` | true | named | true (ByValue)|
101+
102+
86103
87104
88105
89106---
107+
108+
109+ ### Notes
110+ until will become a ``` do {} while () ``` statement in PowerShell.
111+
112+
113+
114+ ---
115+
116+
90117### Syntax
91118``` PowerShell
92119Until -CommandAst <CommandAst> [<CommonParameters>]
93120```
94- ---
95- ### Notes
96- until will become a ``` do {} while () ``` statement in PowerShell.
97121
You can’t perform that action at this time.
0 commit comments