Repository: ignite
Updated Branches:
  refs/heads/ignite-1282 13db2daaf -> b1c64af19


IGNITE-1282: .Net: Minor method renames.


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

Branch: refs/heads/ignite-1282
Commit: b1c64af196c29daed39aa854751bcb8eaa46941d
Parents: 13db2da
Author: vozerov-gridgain <[email protected]>
Authored: Thu Oct 8 17:16:41 2015 +0300
Committer: vozerov-gridgain <[email protected]>
Committed: Thu Oct 8 17:16:41 2015 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.Core/Impl/Cluster/ClusterGroupImpl.cs   | 2 +-
 .../dotnet/Apache.Ignite.Core/Impl/Cluster/IClusterGroupEx.cs    | 4 ++--
 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Ignite.cs       | 4 ++--
 modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteProxy.cs  | 4 ++--
 .../Apache.Ignite.Core/Impl/Portable/PortableMarshaller.cs       | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b1c64af1/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/ClusterGroupImpl.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/ClusterGroupImpl.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/ClusterGroupImpl.cs
index 94dd595..b1f19ab 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/ClusterGroupImpl.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/ClusterGroupImpl.cs
@@ -538,7 +538,7 @@ namespace Apache.Ignite.Core.Impl.Cluster
         }
         
         /** <inheritDoc /> */
-        public IPortableMetadata Metadata(int typeId)
+        public IPortableMetadata GetMetadata(int typeId)
         {
             return DoOutInOp<IPortableMetadata>(OpMetadata, 
                 writer =>

http://git-wip-us.apache.org/repos/asf/ignite/blob/b1c64af1/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/IClusterGroupEx.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/IClusterGroupEx.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/IClusterGroupEx.cs
index 554eb0a..8a766da 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/IClusterGroupEx.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cluster/IClusterGroupEx.cs
@@ -21,7 +21,7 @@ namespace Apache.Ignite.Core.Impl.Cluster
     using Apache.Ignite.Core.Portable;
 
     /// <summary>
-    /// 
+    /// Extended internal Ignite interface.
     /// </summary>
     internal interface IClusterGroupEx : IClusterGroup
     {
@@ -30,6 +30,6 @@ namespace Apache.Ignite.Core.Impl.Cluster
         /// </summary>
         /// <param name="typeId">Type ID.</param>
         /// <returns>Metadata.</returns>
-        IPortableMetadata Metadata(int typeId);
+        IPortableMetadata GetMetadata(int typeId);
     }
 }

http://git-wip-us.apache.org/repos/asf/ignite/blob/b1c64af1/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Ignite.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Ignite.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Ignite.cs
index 9f3d9b1..2ed7a75 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Ignite.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Ignite.cs
@@ -480,9 +480,9 @@ namespace Apache.Ignite.Core.Impl
         }
 
         /** <inheritDoc /> */
-        public IPortableMetadata Metadata(int typeId)
+        public IPortableMetadata GetMetadata(int typeId)
         {
-            return _prj.Metadata(typeId);
+            return _prj.GetMetadata(typeId);
         }
 
         /// <summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/b1c64af1/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteProxy.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteProxy.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteProxy.cs
index 4f9e369..86021c8 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteProxy.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteProxy.cs
@@ -335,9 +335,9 @@ namespace Apache.Ignite.Core.Impl
         }
 
         /** <inheritdoc /> */
-        public IPortableMetadata Metadata(int typeId)
+        public IPortableMetadata GetMetadata(int typeId)
         {
-            return ((IClusterGroupEx)_ignite).Metadata(typeId);
+            return ((IClusterGroupEx)_ignite).GetMetadata(typeId);
         }
     }
 }

http://git-wip-us.apache.org/repos/asf/ignite/blob/b1c64af1/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Portable/PortableMarshaller.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Portable/PortableMarshaller.cs
 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Portable/PortableMarshaller.cs
index 2b87fbb..e1cd4c5 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Portable/PortableMarshaller.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Portable/PortableMarshaller.cs
@@ -264,7 +264,7 @@ namespace Apache.Ignite.Core.Impl.Portable
         {
             if (Ignite != null)
             {
-                IPortableMetadata meta = Ignite.Metadata(typeId);
+                IPortableMetadata meta = Ignite.GetMetadata(typeId);
 
                 if (meta != null)
                     return meta;

Reply via email to