Skip to content

Commit d9d6e8b

Browse files
fixes after review
1 parent a68ff89 commit d9d6e8b

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

NuGet.Config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
<configuration>
33
<packageSources>
44
<add key="Nuget" value="https://api.nuget.org/v3/index.json" />
5-
<add key="UiPath-Internal" value="https://uipath.pkgs.visualstudio.com/Public.Feeds/_packaging/UiPath-Internal/nuget/v3/index.json" />
65
</packageSources>
76
</configuration>

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,16 @@ var ipcServer = new IpcServer
191191
| RequestTimeout | TimeSpan? | **Optional**, defaults to infinity: Interval after which the honoring of requests will time out. |
192192
193193
194-
#### ii. `IpcServer` - declared properties
194+
#### ii. `IpcServer`
195+
196+
**Declared properties**
195197
196198
| Property | Type | Notes |
197199
| -------- | ---- | ----- |
198200
| Endpoints | ContractCollection | **Required**: The collection of `ContractSettings`, which specifies the services to be exposed over Ipc. |
199201
| Transport | ServerTransport | **Required**: The server's transport, meaning whether it accepts connection over Named Pipes, TCP/IP, WebSockets, or a custom communication mechanism. |
200202
201-
#### iii. `IpcServer` - methods
203+
**Methods**
202204
203205
| Method | Description |
204206
| ------ | ----------- |
@@ -208,14 +210,16 @@ var ipcServer = new IpcServer
208210
209211
<hr />
210212
211-
#### iii. `IpcClient` - declared properties
213+
#### iii. `IpcClient`
214+
215+
**Declared properties*
212216
213217
| Property | Type | Notes |
214218
| -------- | ---- | ----- |
215219
| Callbacks | ContractCollection | **Optional**: The collection of `ContractSettings`, which specifies the services to be exposed over Ipc **as callbacks**. |
216220
| Transport | ClientTransport | **Required**: The client's transport, meaning whether it connects to the server over Named Pipes, TCP/IP, WebSockets, or a custom communication mechanism. |
217221
218-
#### iv. `IpcClient` - methods
222+
**Methods**
219223
220224
| Method | Notes |
221225
| ------ | ----- |

0 commit comments

Comments
 (0)