summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Client/Client/AMQConnection.cs
diff options
context:
space:
mode:
authorSteven Shaw <steshaw@apache.org>2006-11-29 05:51:43 +0000
committerSteven Shaw <steshaw@apache.org>2006-11-29 05:51:43 +0000
commit1df5c37bfa8fe1ec20e41dfd2bb06bc10a790917 (patch)
tree8012603b18bae10e2c781debf36a5cd9b7e89bb6 /dotnet/Qpid.Client/Client/AMQConnection.cs
parent74abf7b06d6d3d4d291f87d750500ceded74dd1b (diff)
downloadqpid-python-1df5c37bfa8fe1ec20e41dfd2bb06bc10a790917.tar.gz
QPID-137. First stab at porting enough to get AutoAcknowledge mode working.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@480423 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client/Client/AMQConnection.cs')
-rw-r--r--dotnet/Qpid.Client/Client/AMQConnection.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotnet/Qpid.Client/Client/AMQConnection.cs b/dotnet/Qpid.Client/Client/AMQConnection.cs
index a19b46c40a..5c0537429e 100644
--- a/dotnet/Qpid.Client/Client/AMQConnection.cs
+++ b/dotnet/Qpid.Client/Client/AMQConnection.cs
@@ -265,11 +265,11 @@ namespace Qpid.Client
int _prefetch;
AMQConnection _connection;
- public CreateChannelFailoverSupport(AMQConnection connection, bool transacted, AcknowledgeMode acknowledgementMode, int prefetch)
+ public CreateChannelFailoverSupport(AMQConnection connection, bool transacted, AcknowledgeMode acknowledgeMode, int prefetch)
{
_connection = connection;
_transacted = transacted;
- _acknowledgeMode = acknowledgementMode;
+ _acknowledgeMode = acknowledgeMode;
_prefetch = prefetch;
}