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

[08/13] ignite git commit: .NET: Fixed documentation in ICacheStore.

.NET: Fixed documentation in ICacheStore.


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

Branch: refs/heads/ignite-843-rc2
Commit: 6791c50037e2406755ecb79c85812daf55e05a84
Parents: c946c76
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Wed Dec 9 17:16:56 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Wed Dec 9 17:16:56 2015 +0300

----------------------------------------------------------------------
 .../Cache/Store/ICacheStore.cs                  | 32 ++++++++++----------
 1 file changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/6791c500/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 1364780..d6e4f80 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/Store/ICacheStore.cs
@@ -33,24 +33,24 @@ namespace Apache.Ignite.Core.Cache.Store
     /// <example>
     /// Here is an example:
     /// <code>
-    /// <bean class="org.apache.ignite.configuration.CacheConfiguration">
+    /// &lt;bean class="org.apache.ignite.configuration.CacheConfiguration">
     ///     ...
-    ///     <property name="cacheStoreFactory">
-    ///         <bean class="org.apache.ignite.platform.dotnet.PlatformDotNetCacheStoreFactory">
-    ///             <property name="assemblyName" value="MyAssembly"/>
-    ///             <property name="className" value="MyApp.MyCacheStore"/>
-    ///             <property name="properties">
-    ///                 <map>
-    ///                     <entry key="IntProperty">
-    ///                         <value type="java.lang.Integer">42</value>
-    ///                     </entry>
-    ///                     <entry key="StringProperty" value="String value"/>
-    ///                 </map>
-    ///             </property>
-    ///         </bean>
-    ///     </property>
+    ///     &lt;property name="cacheStoreFactory">
+    ///         &lt;bean class="org.apache.ignite.platform.dotnet.PlatformDotNetCacheStoreFactory">
+    ///             &lt;property name="assemblyName" value="MyAssembly"/>
+    ///             &lt;property name="className" value="MyApp.MyCacheStore"/>
+    ///             &lt;property name="properties">
+    ///                 &lt;map>
+    ///                     &lt;entry key="IntProperty">
+    ///                         &lt;value type="java.lang.Integer">42&lt;/value>
+    ///                     &lt;/entry>
+    ///                     &lt;entry key="StringProperty" value="String value"/>
+    ///                 &lt;/map>
+    ///             &lt;/property>
+    ///         &lt;/bean>
+    ///     &lt;/property>
     ///     ...
-    /// </bean>
+    /// &lt;/bean>
     /// </code>
     /// </example>
     /// Assemply name and class name are passed to <a target="_blank" href="http://msdn.microsoft.com/en-us/library/d133hta4.aspx"><b>System.Activator.CreateInstance(String, String)</b></a>