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 1
1
UDP.Protocol
2
2
------------
3
+
4
+
5
+
6
+
3
7
### Synopsis
4
8
udp protocol
5
9
10
+
11
+
6
12
---
13
+
14
+
7
15
### Description
8
16
9
17
Converts a UDP protocol command to PowerShell
10
18
19
+
20
+
11
21
---
22
+
23
+
12
24
### Examples
13
25
#### EXAMPLE 1
14
26
``` PowerShell
@@ -32,45 +44,49 @@ Invoke-PipeScript { receive udp://*:911 }
32
44
Invoke-PipeScript { send udp:// -Host [ ipaddress] ::broadcast -Port 911 "It's an emergency!" }
33
45
34
46
Invoke-PipeScript { receive udp://* :911 -Keep }
47
+
48
+
35
49
---
50
+
51
+
36
52
### Parameters
37
53
#### ** CommandUri**
38
54
39
55
The URI.
40
56
41
57
42
58
43
- > ** Type** : ``` [Uri] ```
44
59
45
- > ** Required** : true
46
60
47
- > ** Position** : 1
48
61
49
- > ** PipelineInput** : true (ByValue)
62
+ | Type | Required| Position| PipelineInput |
63
+ | -------| --------| --------| --------------|
64
+ | ` [Uri] ` | true | 1 | true (ByValue)|
50
65
51
66
52
67
53
- ---
54
68
#### ** CommandAst**
55
69
56
70
The Command's Abstract Syntax Tree
57
71
58
72
59
73
60
- > ** Type** : ``` [CommandAst] ```
61
74
62
- > ** Required** : true
63
75
64
- > ** Position** : 2
65
76
66
- > ** PipelineInput** : false
77
+ | Type | Required| Position| PipelineInput|
78
+ | --------------| --------| --------| -------------|
79
+ | ` [CommandAst] ` | true | 2 | false |
80
+
81
+
67
82
68
83
69
84
70
85
---
86
+
87
+
71
88
### Syntax
72
89
``` PowerShell
73
90
UDP.Protocol [-CommandUri] <Uri> [-CommandAst] <CommandAst> [<CommonParameters>]
74
91
```
75
- ---
76
92
You can’t perform that action at this time.
0 commit comments