Skip to content

Commit

Permalink
Update building_application.md (#555)
Browse files Browse the repository at this point in the history
Changed new connection to new Connection in 

```
var connection = new Connection(
    new Address("amqps://contoso.com:5671"),
	SaslProfile.Anonymous,
    new Open() { ContainerId = "client.1.2", HostName = "contoso.com", MaxFrameSize = 8 * 1024 },
    (c, o) => { /* do someting with remote Open o */ });
```
  • Loading branch information
Joseandresc committed Dec 5, 2022
1 parent 6625010 commit 5828b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/building_application.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The application must ensure that the mandatory field, ContainerId, is set to avo

The following example demonstrates the above usages.
```
var connection = new connection(
var connection = new Connection(
new Address("amqps://contoso.com:5671"),
SaslProfile.Anonymous,
new Open() { ContainerId = "client.1.2", HostName = "contoso.com", MaxFrameSize = 8 * 1024 },
Expand Down

0 comments on commit 5828b7f

Please sign in to comment.