From 077b8b25ab7fac22daf8494feb125cd5c73b95ac Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Wed, 9 Jun 2010 11:59:38 +0000 Subject: QPID-2589 Cleanup pass to address function naming, capitalization rules, change Qpid messaging 'list' representation from List<> to Collection<>, some exception cleanup. Patch from Chuck Rolke git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@952968 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/bindings/qpid/dotnet/src/Sender.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'cpp/bindings/qpid/dotnet/src/Sender.cpp') diff --git a/cpp/bindings/qpid/dotnet/src/Sender.cpp b/cpp/bindings/qpid/dotnet/src/Sender.cpp index 1708359104..e0911b38db 100644 --- a/cpp/bindings/qpid/dotnet/src/Sender.cpp +++ b/cpp/bindings/qpid/dotnet/src/Sender.cpp @@ -30,10 +30,10 @@ #include "Sender.h" #include "Message.h" -namespace org { -namespace apache { -namespace qpid { -namespace messaging { +namespace Org { +namespace Apache { +namespace Qpid { +namespace Messaging { /// /// Sender a managed wrapper for a ::qpid::messaging::Sender @@ -79,25 +79,25 @@ namespace messaging { } // - // send(msg) + // Send(msg) // - void Sender::send(Message ^ mmsgp) + void Sender::Send(Message ^ mmsgp) { - send(mmsgp, false); + Send(mmsgp, false); } - void Sender::send(Message ^ mmsgp, bool sync) + void Sender::Send(Message ^ mmsgp, bool sync) { - senderp->::qpid::messaging::Sender::send(*((*mmsgp).messagep), sync); + senderp->::qpid::messaging::Sender::send(*((*mmsgp).NativeMessage), sync); } - void Sender::close() + void Sender::Close() { senderp->close(); } - Session ^ Sender::getSession() + Session ^ Sender::GetSession() { return parentSession; } -- cgit v1.2.1