You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/12/10 10:50:14 UTC

[07/26] ignite git commit: .NET: Documentation fixes.

.NET: Documentation fixes.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/c946c762
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/c946c762
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/c946c762

Branch: refs/heads/ignite-1537
Commit: c946c762a15122ab41e8f88b0b9bac80e5d2d135
Parents: d87ca48
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Wed Dec 9 17:14:14 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Wed Dec 9 17:14:14 2015 +0300

----------------------------------------------------------------------
 .../Cache/Query/IQueryCursor.cs                 |  2 +-
 .../Apache.Ignite.Core/Cache/Query/QueryBase.cs |  2 +-
 .../Store/CacheParallelLoadStoreAdapter.cs      |  4 ++--
 .../Cache/Store/CacheStoreAdapter.cs            | 12 +++++-----
 .../Cache/Store/ICacheStore.cs                  |  4 ++--
 .../Apache.Ignite.Core/Cluster/ICluster.cs      |  2 +-
 .../Cluster/IClusterMetrics.cs                  |  6 ++---
 .../Apache.Ignite.Core/Cluster/IClusterNode.cs  |  6 ++---
 .../Apache.Ignite.Core/Compute/IComputeTask.cs  |  2 +-
 .../Datastream/IDataStreamer.cs                 | 12 +++++-----
 .../Apache.Ignite.Core/Events/CacheEvent.cs     |  4 ++--
 .../Apache.Ignite.Core/Events/TaskEvent.cs      |  2 +-
 .../dotnet/Apache.Ignite.Core/IIgnite.cs        |  6 ++---
 .../dotnet/Apache.Ignite.Core/Ignition.cs       | 24 ++++++++++----------
 .../Impl/Binary/BinaryObjectHeader.cs           | 10 ++++----
 .../Impl/Binary/BinarySystemHandlers.cs         |  9 +-------
 .../Impl/Binary/BinaryUtils.cs                  |  1 -
 .../Impl/Binary/Metadata/BinaryTypeHolder.cs    |  1 +
 .../Apache.Ignite.Core/Impl/Cache/CacheImpl.cs  |  2 --
 .../Transactions/ITransaction.cs                |  2 +-
 20 files changed, 52 insertions(+), 61 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/IQueryCursor.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/IQueryCursor.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/IQueryCursor.cs
index ffa0565..9ddac2a 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/IQueryCursor.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/IQueryCursor.cs
@@ -25,7 +25,7 @@ namespace Apache.Ignite.Core.Cache.Query
     /// Query result cursor. Can be processed either in iterative mode, or by taking
     /// all entries using <see cref="IQueryCursor{T}.GetAll()"/> method.
     /// <para />
-    /// Note that you get enumerator or call <code>GetAll()</code> method only once during
+    /// Note that you get enumerator or call <c>GetAll()</c> method only once during
     /// cursor lifetime. Any further attempts to get enumerator or all entries will result 
     /// in exception.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/QueryBase.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/QueryBase.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/QueryBase.cs
index 1464589..5bbfc1c 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/QueryBase.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Query/QueryBase.cs
@@ -45,7 +45,7 @@ namespace Apache.Ignite.Core.Cache.Query
         public bool Local { get; set; }
 
         /// <summary>
-        /// Optional page size. If set to <code>0</code>, then <code>CacheQueryConfiguration.pageSize</code> is used.
+        /// Optional page size. If set to <c>0</c>, then <c>CacheQueryConfiguration.pageSize</c> is used.
         /// </summary>
         public int PageSize { get; set; }
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheParallelLoadStoreAdapter.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheParallelLoadStoreAdapter.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheParallelLoadStoreAdapter.cs
index e80f1a7..147f1bd 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheParallelLoadStoreAdapter.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheParallelLoadStoreAdapter.cs
@@ -103,12 +103,12 @@ namespace Apache.Ignite.Core.Cache.Store
         /// Loads an object. Application developers should implement this method to customize the loading
         /// of a value for a cache entry.
         /// This method is called by a cache when a requested entry is not in the cache.
-        /// If the object can't be loaded <code>null</code> should be returned.
+        /// If the object can't be loaded <c>null</c> should be returned.
         /// </summary>
         /// <param name="key">The key identifying the object being loaded.</param>
         /// <returns>
         /// The value for the entry that is to be stored in the cache
-        /// or <code>null</code> if the object can't be loaded
+        /// or <c>null</c> if the object can't be loaded
         /// </returns>
         public virtual object Load(object key)
         {

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheStoreAdapter.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheStoreAdapter.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheStoreAdapter.cs
index 1930d0c..fe0aeaa 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheStoreAdapter.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/CacheStoreAdapter.cs
@@ -23,14 +23,14 @@ namespace Apache.Ignite.Core.Cache.Store
 
     /// <summary>
     /// Cache storage convenience adapter. It provides default implementation for 
-    /// bulk operations, such as <code>LoadAll</code>, <code>PutAll</code> and
-    /// <code>RemoveAll</code> by sequentially calling corresponding <code>Load</code>,
-    /// <code>Put</code> and <code>Remove</code> operations. Use this adapter whenever 
+    /// bulk operations, such as <c>LoadAll</c>, <c>PutAll</c> and
+    /// <c>RemoveAll</c> by sequentially calling corresponding <c>Load</c>,
+    /// <c>Put</c> and <c>Remove</c> operations. Use this adapter whenever 
     /// such behaviour is acceptable. However in many cases it maybe more preferable 
     /// to take advantage of database batch update functionality, and therefore default 
     /// adapter implementation may not be the best option.
     /// <para/>
-    /// Note that <code>LoadCache</code> method has empty implementation because it is 
+    /// Note that <c>LoadCache</c> method has empty implementation because it is 
     /// essentially up to the user to invoke it with specific arguments.
     /// </summary>
     public abstract class CacheStoreAdapter : ICacheStore
@@ -115,12 +115,12 @@ namespace Apache.Ignite.Core.Cache.Store
         /// Loads an object. Application developers should implement this method to customize the loading
         /// of a value for a cache entry.
         /// This method is called by a cache when a requested entry is not in the cache.
-        /// If the object can't be loaded <code>null</code> should be returned.
+        /// If the object can't be loaded <c>null</c> should be returned.
         /// </summary>
         /// <param name="key">The key identifying the object being loaded.</param>
         /// <returns>
         /// The value for the entry that is to be stored in the cache
-        /// or <code>null</code> if the object can't be loaded
+        /// or <c>null</c> if the object can't be loaded
         /// </returns>
         public abstract object Load(object key);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs
index 4660dab..1364780 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs
@@ -98,11 +98,11 @@ namespace Apache.Ignite.Core.Cache.Store
         /// Loads an object. Application developers should implement this method to customize the loading 
         /// of a value for a cache entry. 
         /// This method is called by a cache when a requested entry is not in the cache. 
-        /// If the object can't be loaded <code>null</code> should be returned.
+        /// If the object can't be loaded <c>null</c> should be returned.
         /// </summary>
         /// <param name="key">The key identifying the object being loaded.</param>
         /// <returns>The value for the entry that is to be stored in the cache 
-        /// or <code>null</code> if the object can't be loaded</returns>
+        /// or <c>null</c> if the object can't be loaded</returns>
         /// <exception cref="CacheStoreException" />
         object Load(object key);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/ICluster.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/ICluster.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/ICluster.cs
index 353ec34..e50970b 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/ICluster.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/ICluster.cs
@@ -67,7 +67,7 @@ namespace Apache.Ignite.Core.Cluster
         /// <returns>Collection of Ignite nodes which represented by specified topology version, 
         /// if it is present in history storage, null otherwise.</returns>
         /// <exception cref="IgniteException">If underlying SPI implementation does not support 
-        /// topology history. Currently only <code>org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi</code>
+        /// topology history. Currently only <c>org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi</c>
         /// supports topology history.</exception>
         ICollection<IClusterNode> GetTopology(long ver);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterMetrics.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterMetrics.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterMetrics.cs
index d0a51aa..f0889d9 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterMetrics.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterMetrics.cs
@@ -196,7 +196,7 @@ namespace Apache.Ignite.Core.Cluster
         /// <summary>
         /// Amount of heap memory in bytes that the JVM
         /// initially requests from the operating system for memory management.
-        /// This method returns <code>-1</code> if the initial memory size is undefined.
+        /// This method returns <c>-1</c> if the initial memory size is undefined.
         /// <para />
         /// This value represents a setting of the heap memory for Java VM and is
         /// not a sum of all initial heap values for all memory pools.
@@ -223,7 +223,7 @@ namespace Apache.Ignite.Core.Cluster
 
         /// <summary>
         /// Mmaximum amount of heap memory in bytes that can be used for memory management.
-        /// This method returns <code>-1</code> if the maximum memory size is undefined.
+        /// This method returns <c>-1</c> if the maximum memory size is undefined.
         /// <para />
         /// This amount of memory is not guaranteed to be available for memory management if 
         /// it is greater than the amount of committed memory. The JVM may fail to allocate
@@ -235,7 +235,7 @@ namespace Apache.Ignite.Core.Cluster
         long HeapMemoryMaximum { get; }
 
         /// <summary>
-        /// Total amount of heap memory in bytes. This method returns <code>-1</code>
+        /// Total amount of heap memory in bytes. This method returns <c>-1</c>
         /// if the total memory size is undefined.
         /// <para />
         /// This amount of memory is not guaranteed to be available for memory management if it is 

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterNode.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterNode.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterNode.cs
index ccb0e03..5f14116 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterNode.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cluster/IClusterNode.cs
@@ -56,7 +56,7 @@ namespace Apache.Ignite.Core.Cluster
         /// </summary>
         /// <param name="name">Attribute name.</param>
         /// <param name="attr">Attribute value.</param>
-        /// <returns><code>true</code> in case such attribute exists.</returns>
+        /// <returns><c>true</c> in case such attribute exists.</returns>
         bool TryGetAttribute<T>(string name, out T attr);
 
         /// <summary>
@@ -125,8 +125,8 @@ namespace Apache.Ignite.Core.Cluster
         /// an idea about CPU load on remote node via <see cref="IClusterMetrics.CurrentCpuLoad"/>.
         /// <para/>
         /// Node metrics are updated with some delay which is directly related to heartbeat
-        /// frequency. For example, when used with default <code>GridTcpDiscoverySpi</code> the 
-        /// update will happen every <code>2</code> seconds.
+        /// frequency. For example, when used with default <c>GridTcpDiscoverySpi</c> the 
+        /// update will happen every <c>2</c> seconds.
         /// </summary>
         /// <returns>Runtime metrics snapshot for this node.</returns>
         [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate", Justification = "Semantics.")]

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Compute/IComputeTask.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Compute/IComputeTask.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Compute/IComputeTask.cs
index 8c3136b..87aebda 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Compute/IComputeTask.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Compute/IComputeTask.cs
@@ -42,7 +42,7 @@ namespace Apache.Ignite.Core.Compute
     ///     </item>
     ///     <item>
     ///         <description>Once job execution results become available method 
-    ///         <see cref="IComputeTask{A,T,R}.Result(IComputeJobResult{TJobRes}, IList{IComputeJobResult{TJobRes}})"/>
+    ///         <see cref="IComputeTask{A,T,R}.OnResult(IComputeJobResult{TJobRes}, IList{IComputeJobResult{TJobRes}})"/>
     ///         will be called for ech received job result. The policy returned by this method will
     ///         determine the way task reacts to every job result.
     ///         <para />

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
index acbc75b..64c0f9e 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
@@ -88,14 +88,14 @@ namespace Apache.Ignite.Core.Datastream
         /// <summary>
         /// Flag value indicating that this data streamer assumes that there could be concurrent updates to the cache. 
         /// <para />
-        /// Default is <code>false</code>.
+        /// Default is <c>false</c>.
         /// </summary>
         bool AllowOverwrite { get; set; }
 
         /// <summary>
         /// Flag indicating that write-through behavior should be disabled for data loading.
         /// <para />
-        /// Default is <code>false</code>.
+        /// Default is <c>false</c>.
         /// </summary>
         bool SkipStore { get; set; }
 
@@ -104,7 +104,7 @@ namespace Apache.Ignite.Core.Datastream
         /// <para />
         /// Setter must be called before any add/remove operation.
         /// <para />
-        /// Default is <code>1024</code>.
+        /// Default is <c>1024</c>.
         /// </summary>
         int PerNodeBufferSize { get; set; }
 
@@ -113,7 +113,7 @@ namespace Apache.Ignite.Core.Datastream
         /// <para />
         /// Setter must be called before any add/remove operation.
         /// <para />
-        /// Default is <code>16</code>.
+        /// Default is <c>16</c>.
         /// </summary>
         int PerNodeParallelOperations { get; set; }
 
@@ -123,9 +123,9 @@ namespace Apache.Ignite.Core.Datastream
         /// Note that there is no guarantee that data will be delivered after this concrete
         /// attempt (e.g., it can fail when topology is changing), but it won't be lost anyway.
         /// <para />
-        /// If set to <code>0</code>, automatic flush is disabled.
+        /// If set to <c>0</c>, automatic flush is disabled.
         /// <para />
-        /// Default is <code>0</code> (disabled).
+        /// Default is <c>0</c> (disabled).
         /// </summary>
         long AutoFlushFrequency { get; set; }
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Events/CacheEvent.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Events/CacheEvent.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Events/CacheEvent.cs
index 02b304e..2c3230d 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Events/CacheEvent.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Events/CacheEvent.cs
@@ -151,8 +151,8 @@ namespace Apache.Ignite.Core.Events
 
         /// <summary>
         /// Gets security subject ID initiated this cache event, if available. This property is available only for <see 
-        /// cref="EventType.EventCacheObjectPut" />, <see cref="EventType.EventCacheObjectRemoved" /> and <see 
-        /// cref="EventType.EventCacheObjectRead" /> cache events. Subject ID will be set either to nodeId initiated 
+        /// cref="EventType.CacheObjectPut" />, <see cref="EventType.CacheObjectRemoved" /> and <see 
+        /// cref="EventType.CacheObjectRead" /> cache events. Subject ID will be set either to nodeId initiated 
         /// cache update or read or client ID initiated cache update or read. 
         /// </summary>
         public Guid? SubjectId { get { return _subjectId; } }

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Events/TaskEvent.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Events/TaskEvent.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Events/TaskEvent.cs
index c8f9338..aa03969 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Events/TaskEvent.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Events/TaskEvent.cs
@@ -77,7 +77,7 @@ namespace Apache.Ignite.Core.Events
 
         /// <summary>
         /// Gets security subject ID initiated this task event, if available. This property is not available for 
-        /// <see cref="EventType.EventTaskSessionAttrSet" /> task event. 
+        /// <see cref="EventType.TaskSessionAttrSet" /> task event. 
         /// Subject ID will be set either to node ID or client ID initiated task execution. 
         /// </summary>
         public Guid? SubjectId { get { return _subjectId; } }

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/IIgnite.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/IIgnite.cs b/modules/platforms/dotnet/Apache.Ignite.Core/IIgnite.cs
index 08e5f6b..2f82756 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/IIgnite.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/IIgnite.cs
@@ -153,15 +153,15 @@ namespace Apache.Ignite.Core
 
         /// <summary>
         /// Gets an atomic long with specified name from cache.
-        /// Creates new atomic long in cache if it does not exist and <see cref="create"/> is true.
+        /// Creates new atomic long in cache if it does not exist and <c>create</c> is true.
         /// </summary>
         /// <param name="name">Name of the atomic long.</param>
         /// <param name="initialValue">
-        /// Initial value for the atomic long. Ignored if <see cref="create"/> is false.
+        /// Initial value for the atomic long. Ignored if <c>create</c> is false.
         /// </param>
         /// <param name="create">Flag indicating whether atomic long should be created if it does not exist.</param>
         /// <returns>Atomic long instance with specified name, 
-        /// or null if it does not exist and <see cref="create"/> flag is not set.</returns>
+        /// or null if it does not exist and <c>create</c> flag is not set.</returns>
         /// <exception cref="IgniteException">If atomic long could not be fetched or created.</exception>
         IAtomicLong GetAtomicLong(string name, long initialValue, bool create);
     }

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs
index 6f98322..7a3fafc 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs
@@ -94,7 +94,7 @@ namespace Apache.Ignite.Core
 
         /// <summary>
         /// Starts Ignite with default configuration. By default this method will
-        /// use Ignite configuration defined in <code>IGNITE/config/default-config.xml</code>
+        /// use Ignite configuration defined in <c>{IGNITE_HOME}/config/default-config.xml</c>
         /// configuration file. If such file is not found, then all system defaults will be used.
         /// </summary>
         /// <returns>Started Ignite.</returns>
@@ -448,7 +448,7 @@ namespace Apache.Ignite.Core
         /// node) can belong to a different grid. Ignite name defines what grid a particular Ignite
         /// instance (and correspondingly its node) belongs to.
         /// </summary>
-        /// <param name="name">Ignite name to which requested Ignite instance belongs. If <code>null</code>,
+        /// <param name="name">Ignite name to which requested Ignite instance belongs. If <c>null</c>,
         /// then Ignite instance belonging to a default no-name Ignite will be returned.
         /// </param>
         /// <returns>An instance of named grid.</returns>
@@ -477,15 +477,15 @@ namespace Apache.Ignite.Core
         }
 
         /// <summary>
-        /// Stops named grid. If <code>cancel</code> flag is set to <code>true</code> then
+        /// Stops named grid. If <c>cancel</c> flag is set to <c>true</c> then
         /// all jobs currently executing on local node will be interrupted. If
-        /// grid name is <code>null</code>, then default no-name Ignite will be stopped.
+        /// grid name is <c>null</c>, then default no-name Ignite will be stopped.
         /// </summary>
-        /// <param name="name">Grid name. If <code>null</code>, then default no-name Ignite will be stopped.</param>
-        /// <param name="cancel">If <code>true</code> then all jobs currently executing will be cancelled
-        /// by calling <code>ComputeJob.cancel</code>method.</param>
-        /// <returns><code>true</code> if named Ignite instance was indeed found and stopped, <code>false</code>
-        /// othwerwise (the instance with given <code>name</code> was not found).</returns>
+        /// <param name="name">Grid name. If <c>null</c>, then default no-name Ignite will be stopped.</param>
+        /// <param name="cancel">If <c>true</c> then all jobs currently executing will be cancelled
+        /// by calling <c>ComputeJob.cancel</c>method.</param>
+        /// <returns><c>true</c> if named Ignite instance was indeed found and stopped, <c>false</c>
+        /// othwerwise (the instance with given <c>name</c> was not found).</returns>
         public static bool Stop(string name, bool cancel)
         {
             lock (SyncRoot)
@@ -508,11 +508,11 @@ namespace Apache.Ignite.Core
         }
 
         /// <summary>
-        /// Stops <b>all</b> started grids. If <code>cancel</code> flag is set to <code>true</code> then
+        /// Stops <b>all</b> started grids. If <c>cancel</c> flag is set to <c>true</c> then
         /// all jobs currently executing on local node will be interrupted.
         /// </summary>
-        /// <param name="cancel">If <code>true</code> then all jobs currently executing will be cancelled
-        /// by calling <code>ComputeJob.cancel</code>method.</param>
+        /// <param name="cancel">If <c>true</c> then all jobs currently executing will be cancelled
+        /// by calling <c>ComputeJob.Cancel()</c> method.</param>
         public static void StopAll(bool cancel)
         {
             lock (SyncRoot)

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObjectHeader.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObjectHeader.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObjectHeader.cs
index 573e014..0cabd7d 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObjectHeader.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObjectHeader.cs
@@ -433,7 +433,7 @@ namespace Apache.Ignite.Core.Impl.Binary
             return hdr;
         }
 
-        /** <inheritdoc> */
+        /** <inheritdoc /> */
         public bool Equals(BinaryObjectHeader other)
         {
             return Header == other.Header &&
@@ -446,7 +446,7 @@ namespace Apache.Ignite.Core.Impl.Binary
                    SchemaOffset == other.SchemaOffset;
         }
 
-        /** <inheritdoc> */
+        /** <inheritdoc /> */
         public override bool Equals(object obj)
         {
             if (ReferenceEquals(null, obj)) return false;
@@ -454,7 +454,7 @@ namespace Apache.Ignite.Core.Impl.Binary
             return obj is BinaryObjectHeader && Equals((BinaryObjectHeader) obj);
         }
 
-        /** <inheritdoc> */
+        /** <inheritdoc /> */
         public override int GetHashCode()
         {
             unchecked
@@ -471,13 +471,13 @@ namespace Apache.Ignite.Core.Impl.Binary
             }
         }
 
-        /** <inheritdoc> */
+        /** <inheritdoc /> */
         public static bool operator ==(BinaryObjectHeader left, BinaryObjectHeader right)
         {
             return left.Equals(right);
         }
 
-        /** <inheritdoc> */
+        /** <inheritdoc /> */
         public static bool operator !=(BinaryObjectHeader left, BinaryObjectHeader right)
         {
             return !left.Equals(right);

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinarySystemHandlers.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinarySystemHandlers.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinarySystemHandlers.cs
index 0af1e82..506b56d 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinarySystemHandlers.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinarySystemHandlers.cs
@@ -703,14 +703,7 @@ namespace Apache.Ignite.Core.Impl.Binary
         {
             return BinaryUtils.ReadMapEntry(ctx);
         }
-
-        /**
-         * <summary>Add element to array list.</summary>
-         * <param name="col">Array list.</param>
-         * <param name="elem">Element.</param>
-         */
-
-
+        
         /**
          * <summary>Read delegate.</summary>
          * <param name="ctx">Read context.</param>

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs
index 1917f01..4c54dea 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs
@@ -611,7 +611,6 @@ namespace Apache.Ignite.Core.Impl.Binary
         /**
          * <summary>Read date.</summary>
          * <param name="stream">Stream.</param>
-         * <param name="local">Local flag.</param>
          * <returns>Date</returns>
          */
         public static DateTime? ReadTimestamp(IBinaryStream stream)

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Metadata/BinaryTypeHolder.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Metadata/BinaryTypeHolder.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Metadata/BinaryTypeHolder.cs
index 53ad77e..1f290d8 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Metadata/BinaryTypeHolder.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Metadata/BinaryTypeHolder.cs
@@ -53,6 +53,7 @@ namespace Apache.Ignite.Core.Impl.Binary.Metadata
         /// <param name="typeId">Type ID.</param>
         /// <param name="typeName">Type name.</param>
         /// <param name="affKeyFieldName">Affinity key field name.</param>
+        /// <param name="isEnum">Enum flag.</param>
         public BinaryTypeHolder(int typeId, string typeName, string affKeyFieldName, bool isEnum)
         {
             _typeId = typeId;

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/CacheImpl.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/CacheImpl.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/CacheImpl.cs
index 262ff12..dbb58c8 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/CacheImpl.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/CacheImpl.cs
@@ -152,8 +152,6 @@ namespace Apache.Ignite.Core.Impl.Cache
         }
 
         /** <inheritDoc /> */
-
-        /** <inheritDoc /> */
         public bool IsEmpty()
         {
             return GetSize() == 0;

http://git-wip-us.apache.org/repos/asf/ignite/blob/c946c762/modules/platforms/dotnet/Apache.Ignite.Core/Transactions/ITransaction.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Transactions/ITransaction.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Transactions/ITransaction.cs
index 22a1ee1..2c062e7 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Transactions/ITransaction.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Transactions/ITransaction.cs
@@ -232,7 +232,7 @@ namespace Apache.Ignite.Core.Transactions
         /// Removes metadata by name.
         /// </summary>
         /// <param name="name">Metadata name.</param>
-        /// <returns>Value of removed metadata or default value for <code>V</code> type.</returns>
+        /// <returns>Value of removed metadata or default value for <c>V</c> type.</returns>
         TV RemoveMeta<TV>(string name);
     }
 }