@@ -194,7 +194,7 @@ public interface IConnection : NetworkConnection, IDisposable
194
194
/// <remarks>
195
195
/// Note that all active channels, sessions, and models will be closed if this method is called.
196
196
/// 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.
198
198
///This method waits infinitely for the in-progress close operation to complete.
199
199
/// </remarks>
200
200
void Abort ( ) ;
@@ -206,7 +206,7 @@ public interface IConnection : NetworkConnection, IDisposable
206
206
/// The method behaves in the same way as <see cref="Abort()"/>, with the only
207
207
/// difference that the connection is closed with the given connection close code and message.
208
208
/// <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)
210
210
/// </para>
211
211
/// <para>
212
212
/// A message indicating the reason for closing the connection
@@ -253,7 +253,7 @@ public interface IConnection : NetworkConnection, IDisposable
253
253
/// closed if this method is called. It will wait for the in-progress
254
254
/// close operation to complete. This method will not return to the caller
255
255
/// 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 .
257
257
/// It can also throw <see cref="IOException"/> when socket was closed unexpectedly.
258
258
/// </remarks>
259
259
void Close ( ) ;
@@ -281,7 +281,7 @@ public interface IConnection : NetworkConnection, IDisposable
281
281
/// Note that all active channels, sessions, and models will be
282
282
/// closed if this method is called. It will wait for the in-progress
283
283
/// 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 .
285
285
/// It can also throw <see cref="IOException"/> when socket was closed unexpectedly.
286
286
/// If timeout is reached and the close operations haven't finished, then socket is forced to close.
287
287
/// <para>
@@ -298,7 +298,7 @@ public interface IConnection : NetworkConnection, IDisposable
298
298
/// The method behaves in the same way as <see cref="Close(int)"/>, with the only
299
299
/// difference that the connection is closed with the given connection close code and message.
300
300
/// <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).
302
302
/// </para>
303
303
/// <para>
304
304
/// A message indicating the reason for closing the connection.
0 commit comments