Skip to content

Fix XML doc for AmqpTcpEndpoint #1091

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion projects/RabbitMQ.Client/client/api/AmqpTcpEndpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,16 @@ namespace RabbitMQ.Client
/// <summary>
/// Represents a TCP-addressable AMQP peer: a host name and port number.
/// </summary>
/// <remarks>
/// <para>
/// Some of the constructors take, as a convenience, a System.Uri
/// Some of the constructors take, as a convenience, a <see cref="System.Uri"/>
/// instance representing an AMQP server address. The use of Uri
/// here is not standardised - Uri is simply a convenient
/// container for internet-address-like components. In particular,
/// the Uri "Scheme" property is ignored: only the "Host" and
/// "Port" properties are extracted.
/// </para>
/// </remarks>
public class AmqpTcpEndpoint// : ICloneable
{
/// <summary>
Expand Down