Skip to content

Commit e7bff15

Browse files
Documentation corrections
1 parent c0cfb0a commit e7bff15

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public interface IConnection : NetworkConnection, IDisposable
194194
/// <remarks>
195195
/// Note that all active channels, sessions, and models will be closed if this method is called.
196196
/// In comparison to normal <see cref="Close()"/> method, <see cref="Abort()"/> will not throw
197-
/// <see cref="AlreadyClosedException"/> or <see cref="IOException"/> during closing connection.
197+
/// <see cref="IOException"/> during closing connection.
198198
///This method waits infinitely for the in-progress close operation to complete.
199199
/// </remarks>
200200
void Abort();
@@ -206,7 +206,7 @@ public interface IConnection : NetworkConnection, IDisposable
206206
/// The method behaves in the same way as <see cref="Abort()"/>, with the only
207207
/// difference that the connection is closed with the given connection close code and message.
208208
/// <para>
209-
/// The close code (See under "Reply Codes" in the AMQP specification)
209+
/// The close code (See under "Reply Codes" in the AMQP 0-9-1 specification)
210210
/// </para>
211211
/// <para>
212212
/// A message indicating the reason for closing the connection
@@ -253,7 +253,7 @@ public interface IConnection : NetworkConnection, IDisposable
253253
/// closed if this method is called. It will wait for the in-progress
254254
/// close operation to complete. This method will not return to the caller
255255
/// until the shutdown is complete. If the connection is already closed
256-
/// (or closing), then this method will throw <see cref="AlreadyClosedException"/>.
256+
/// (or closing), then this method will do nothing.
257257
/// It can also throw <see cref="IOException"/> when socket was closed unexpectedly.
258258
/// </remarks>
259259
void Close();
@@ -281,7 +281,7 @@ public interface IConnection : NetworkConnection, IDisposable
281281
/// Note that all active channels, sessions, and models will be
282282
/// closed if this method is called. It will wait for the in-progress
283283
/// close operation to complete with a timeout. If the connection is
284-
/// already closed (or closing), then this method will throw <see cref="AlreadyClosedException"/>.
284+
/// already closed (or closing), then this method will do nothing.
285285
/// It can also throw <see cref="IOException"/> when socket was closed unexpectedly.
286286
/// If timeout is reached and the close operations haven't finished, then socket is forced to close.
287287
/// <para>
@@ -298,7 +298,7 @@ public interface IConnection : NetworkConnection, IDisposable
298298
/// The method behaves in the same way as <see cref="Close(int)"/>, with the only
299299
/// difference that the connection is closed with the given connection close code and message.
300300
/// <para>
301-
/// The close code (See under "Reply Codes" in the AMQP specification).
301+
/// The close code (See under "Reply Codes" in the AMQP 0-9-1 specification).
302302
/// </para>
303303
/// <para>
304304
/// A message indicating the reason for closing the connection.

0 commit comments

Comments
 (0)