Skip to content

Commit 8ee9a66

Browse files
Cameron CowenCameron Cowen
authored andcommitted
Added adapter classes and enums
1 parent 95a9bd7 commit 8ee9a66

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

src/PowerShell.BizTalk/PowerShell.BizTalk.psm1

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
1+
enum BtsAdapterDirection {
2+
Receive
3+
Send
4+
}
5+
16
enum BtsHostType {
27
InProcess = 1
38
Isolated = 2
49
}
510

11+
class BtsAdapter {
12+
[string]$Name
13+
[string]$Comment
14+
}
15+
16+
class BtsAdapterHandler {
17+
[string]$AdapterName
18+
[string]$HostName
19+
[BtsAdapterDirection]$Direction
20+
}
21+
622
class BtsHost {
723
[string]$Name
824
[BtsHostType]$HostType

0 commit comments

Comments
 (0)