Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 20056 invoked from network); 4 Sep 2008 18:03:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Sep 2008 18:03:48 -0000 Received: (qmail 13470 invoked by uid 500); 4 Sep 2008 18:03:46 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 13446 invoked by uid 500); 4 Sep 2008 18:03:46 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 13437 invoked by uid 99); 4 Sep 2008 18:03:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Sep 2008 11:03:46 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Sep 2008 18:02:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B2E94238899B; Thu, 4 Sep 2008 11:02:55 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r692176 - /activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs Date: Thu, 04 Sep 2008 18:02:54 -0000 To: commits@activemq.apache.org From: jgomes@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080904180255.B2E94238899B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jgomes Date: Thu Sep 4 11:02:53 2008 New Revision: 692176 URL: http://svn.apache.org/viewvc?rev=692176&view=rev Log: Add setter to NMSPriority and NMSPersistent. Modified: activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs Modified: activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs?rev=692176&r1=692175&r2=692176&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs (original) +++ activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs Thu Sep 4 11:02:53 2008 @@ -55,14 +55,14 @@ string NMSMessageId { get; } /// - /// Whether or not this message is persistent. This property is set by the IMessageProducer. + /// Whether or not this message is persistent. /// - bool NMSPersistent { get; } + bool NMSPersistent { get; set; } /// - /// The Priority of this message. This property is set by the IMessageProducer. + /// The Priority of this message. /// - byte NMSPriority { get; } + byte NMSPriority { get; set; } /// /// Returns true if this message has been redelivered to this or another consumer before being acknowledged successfully.