Skip to content

Commit 91ab741

Browse files
StartAutomatingStartAutomating
authored andcommitted
Join-PipeScript: Improving Unnamed end block behavior (Fixes #363)
1 parent 7f42f7d commit 91ab741

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed

docs/UDP.Protocol.md

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,26 @@
11
UDP.Protocol
22
------------
3+
4+
5+
6+
37
### Synopsis
48
udp protocol
59

10+
11+
612
---
13+
14+
715
### Description
816

917
Converts a UDP protocol command to PowerShell
1018

19+
20+
1121
---
22+
23+
1224
### Examples
1325
#### EXAMPLE 1
1426
```PowerShell
@@ -32,45 +44,49 @@ Invoke-PipeScript { receive udp://*:911 }
3244
Invoke-PipeScript { send udp:// -Host [ipaddress]::broadcast -Port 911 "It's an emergency!" }
3345

3446
Invoke-PipeScript { receive udp://*:911 -Keep }
47+
48+
3549
---
50+
51+
3652
### Parameters
3753
#### **CommandUri**
3854

3955
The URI.
4056

4157

4258

43-
> **Type**: ```[Uri]```
4459

45-
> **Required**: true
4660

47-
> **Position**: 1
4861

49-
> **PipelineInput**:true (ByValue)
62+
|Type |Required|Position|PipelineInput |
63+
|-------|--------|--------|--------------|
64+
|`[Uri]`|true |1 |true (ByValue)|
5065

5166

5267

53-
---
5468
#### **CommandAst**
5569

5670
The Command's Abstract Syntax Tree
5771

5872

5973

60-
> **Type**: ```[CommandAst]```
6174

62-
> **Required**: true
6375

64-
> **Position**: 2
6576

66-
> **PipelineInput**:false
77+
|Type |Required|Position|PipelineInput|
78+
|--------------|--------|--------|-------------|
79+
|`[CommandAst]`|true |2 |false |
80+
81+
6782

6883

6984

7085
---
86+
87+
7188
### Syntax
7289
```PowerShell
7390
UDP.Protocol [-CommandUri] <Uri> [-CommandAst] <CommandAst> [<CommonParameters>]
7491
```
75-
---
7692

0 commit comments

Comments
 (0)