Skip to content

Commit 55fe395

Browse files
author
Emile Joubert
committed
Document all public members of IModel and ConnectionFactory
1 parent c11ea5c commit 55fe395

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/client/RabbitMQ.Client/src/client/api/ConnectionFactory.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ public class ConnectionFactory
160160
///<summary>The AMQP protocol to be used</summary>
161161
public IProtocol Protocol = Protocols.FromEnvironment();
162162

163+
///<summary>The AMQP connection target</summary>
163164
public AmqpTcpEndpoint Endpoint
164165
{
165166
get
@@ -175,11 +176,13 @@ public AmqpTcpEndpoint Endpoint
175176
}
176177
}
177178

179+
///<summary>Set connection parameters using the amqp or amqps scheme</summary>
178180
public Uri uri
179181
{
180182
set { SetUri(value); }
181183
}
182184

185+
///<summary>Set connection parameters using the amqp or amqps scheme</summary>
183186
public String Uri
184187
{
185188
set { SetUri(new Uri(value, UriKind.Absolute)); }

0 commit comments

Comments
 (0)