File tree Expand file tree Collapse file tree 1 file changed +26
-10
lines changed
Expand file tree Collapse file tree 1 file changed +26
-10
lines changed Original file line number Diff line number Diff line change 11UDP.Protocol
22------------
3+
4+
5+
6+
37### Synopsis
48udp protocol
59
10+
11+
612---
13+
14+
715### Description
816
917Converts 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 }
3244Invoke-PipeScript { send udp:// -Host [ ipaddress] ::broadcast -Port 911 "It's an emergency!" }
3345
3446Invoke-PipeScript { receive udp://* :911 -Keep }
47+
48+
3549---
50+
51+
3652### Parameters
3753#### ** CommandUri**
3854
3955The 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
5670The 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
7390UDP.Protocol [-CommandUri] <Uri> [-CommandAst] <CommandAst> [<CommonParameters>]
7491```
75- ---
7692
You can’t perform that action at this time.
0 commit comments