Infinispan.HotRod.Config.ConfigurationBuilder.AddCluster C# (CSharp) Метод

AddCluster() публичный Метод

public AddCluster ( string clusterName ) : ClusterConfigurationBuilder
clusterName string
Результат ClusterConfigurationBuilder
        public ClusterConfigurationBuilder AddCluster(string clusterName)
        {
            return new ClusterConfigurationBuilder(this, builder.AddCluster(clusterName));
        }

Usage Example

Пример #1
0
 public ClusterConfigurationBuilder AddCluster(String clusterName)
 {
     return(parent.AddCluster(clusterName));
 }