Author: jgomes
Date: Fri Jan  3 19:17:26 2014
New Revision: 1555209

URL: http://svn.apache.org/r1555209
Log:
Skip building Mono 4.0.
Fix XML comment errors.

Modified:
    activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant.build
    
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/Configuration/NmsTransportElement.cs
    
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputChannel.cs
    
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputQueueChannelBase.cs
    
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsOutputChannelBase.cs

Modified: activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant.build
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant.build?rev=1555209&r1=1555208&r2=1555209&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant.build (original)
+++ activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant.build Fri Jan  3 
19:17:26 2014
@@ -38,6 +38,7 @@
     <!-- Skip certain frameworks, since WCF Client is not supported on those 
platforms. -->
     <property name="build.net-2.0.skip" value="true"/>
     <property name="build.mono-2.0.skip" value="true"/>
+    <property name="build.mono-4.0.skip" value="true"/>
     <property name="build.netcf-2.0.skip" value="true"/>
     <property name="build.netcf-3.5.skip" value="true"/>
 

Modified: 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/Configuration/NmsTransportElement.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/Configuration/NmsTransportElement.cs?rev=1555209&r1=1555208&r2=1555209&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/Configuration/NmsTransportElement.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/Configuration/NmsTransportElement.cs
 Fri Jan  3 19:17:26 2014
@@ -90,7 +90,7 @@ namespace Apache.NMS.WCF
                /// </summary>
                /// <param name="bindingElement">A binding element.</param>
                /// <exception cref="T:System.ArgumentNullException">
-               ///     <paramref name="transportElement"/> is null.</exception>
+               ///     <paramref name="bindingElement"/> is null.</exception>
                public override void ApplyConfiguration(BindingElement 
bindingElement)
                {
                        base.ApplyConfiguration(bindingElement);

Modified: 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputChannel.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputChannel.cs?rev=1555209&r1=1555208&r2=1555209&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputChannel.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputChannel.cs
 Fri Jan  3 19:17:26 2014
@@ -183,7 +183,7 @@ namespace Apache.NMS.WCF
                /// </summary>
                /// <param name="result">The <see 
cref="T:System.IAsyncResult"/> that identifies the <see 
cref="M:System.ServiceModel.Channels.IInputChannel.BeginWaitForMessage(System.TimeSpan,System.AsyncCallback,System.Object)"/>
 operation to finish, and from which to retrieve an end result.</param>
                /// <returns>
-               /// true if a message has arrived before the <paramref 
name="timeout"/> has been exceeded; otherwise false.
+               /// true if a message has arrived before the timeout parameter 
to BeginWaitForMessage() has been exceeded; otherwise false.
                /// </returns>
                public bool EndWaitForMessage(IAsyncResult result)
                {

Modified: 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputQueueChannelBase.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputQueueChannelBase.cs?rev=1555209&r1=1555208&r2=1555209&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputQueueChannelBase.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsInputQueueChannelBase.cs
 Fri Jan  3 19:17:26 2014
@@ -185,7 +185,7 @@ namespace Apache.NMS.WCF
                /// Completes an asynchronous operation on the open of a 
communication object.
                /// </summary>
                /// <param name="result">The <see 
cref="T:System.IAsyncResult"/> that is returned by a call to the <see 
cref="M:System.ServiceModel.Channels.CommunicationObject.OnEndOpen(System.IAsyncResult)"/>
 method.</param>
-               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by <paramref name="timeout"/> that was allotted for the 
operation was exceeded before the operation was completed.</exception>
+               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by timeout passed to OnBeginOpen() that was allotted for the 
operation was exceeded before the operation was completed.</exception>
                protected override void OnEndOpen(IAsyncResult result)
                {
                        CompletedAsyncResult.End(result);
@@ -227,7 +227,7 @@ namespace Apache.NMS.WCF
                /// Completes an asynchronous operation on the close of a 
communication object.
                /// </summary>
                /// <param name="result">The <see 
cref="T:System.IAsyncResult"/> that is returned by a call to the <see 
cref="M:System.ServiceModel.Channels.CommunicationObject.OnEndClose(System.IAsyncResult)"/>
 method.</param>
-               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by <paramref name="timeout"/> that was allotted for the 
operation was exceeded before the operation was completed.</exception>
+               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by timeout in OnBeginClose() that was allotted for the operation 
was exceeded before the operation was completed.</exception>
                protected override void OnEndClose(IAsyncResult result)
                {
                        CompletedAsyncResult.End(result);

Modified: 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsOutputChannelBase.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsOutputChannelBase.cs?rev=1555209&r1=1555208&r2=1555209&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsOutputChannelBase.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/src/main/csharp/NmsOutputChannelBase.cs
 Fri Jan  3 19:17:26 2014
@@ -164,7 +164,7 @@ namespace Apache.NMS.WCF
                /// Completes an asynchronous operation on the close of a 
communication object.
                /// </summary>
                /// <param name="result">The <see 
cref="T:System.IAsyncResult"/> that is returned by a call to the <see 
cref="M:System.ServiceModel.Channels.CommunicationObject.OnEndClose(System.IAsyncResult)"/>
 method.</param>
-               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by <paramref name="timeout"/> that was allotted for the 
operation was exceeded before the operation was completed.</exception>
+               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by timeout parameter to OnBeginClose() that was allotted for the 
operation was exceeded before the operation was completed.</exception>
                protected override void OnEndClose(IAsyncResult result)
                {
                        CompletedAsyncResult.End(result);
@@ -206,7 +206,7 @@ namespace Apache.NMS.WCF
                /// Completes an asynchronous operation on the open of a 
communication object.
                /// </summary>
                /// <param name="result">The <see 
cref="T:System.IAsyncResult"/> that is returned by a call to the <see 
cref="M:System.ServiceModel.Channels.CommunicationObject.OnEndOpen(System.IAsyncResult)"/>
 method.</param>
-               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by <paramref name="timeout"/> that was allotted for the 
operation was exceeded before the operation was completed.</exception>
+               /// <exception cref="T:System.TimeoutException">The interval of 
time specified by timeout parameter to OnBeginOpen() that was allotted for the 
operation was exceeded before the operation was completed.</exception>
                protected override void OnEndOpen(IAsyncResult result)
                {
                        CompletedAsyncResult.End(result);


Reply via email to