Skip to content

Commit 8815a59

Browse files
author
David R. MacIver
committed
remove Parameters from C# client
1 parent 425372a commit 8815a59

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,6 @@ public interface IConnection: IDisposable
103103
///communicate with its peer.</summary>
104104
IProtocol Protocol { get; }
105105

106-
///<summary>The connection parameters used during construction
107-
///of this connection.</summary>
108-
ConnectionFactory Parameters { get; }
109-
110106
///<summary>The maximum channel number this connection
111107
///supports (0 if unlimited). Usable channel numbers
112108
///range from 1 to this number, inclusive.</summary>

projects/client/RabbitMQ.Client/src/client/impl/ConnectionBase.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,6 @@ public void WriteFrame(Frame f)
214214
m_heartbeatWrite.Set();
215215
}
216216

217-
public ConnectionFactory Parameters
218-
{
219-
get
220-
{
221-
return m_factory;
222-
}
223-
}
224-
225217
public ushort ChannelMax
226218
{
227219
get

0 commit comments

Comments
 (0)