Azure.ContentSearch.AzureProvider.AzureIndex.AzureIndex C# (CSharp) Метод

AzureIndex() защищенный Метод

protected AzureIndex ( string name ) : Microsoft.Azure.Search
name string
Результат Microsoft.Azure.Search
        protected AzureIndex(string name)
        {
            Assert.ArgumentNotNullOrEmpty(name, "name");
            Name = name.Replace("_", "-").ToLower();
            this.settings = ContentSearchManager.Locator.GetInstance<Sitecore.ContentSearch.Abstractions.ISettings>();
            this.factory = ContentSearchManager.Locator.GetInstance<Sitecore.Abstractions.IFactory>();
            this.indexes = new Dictionary<string, ISearchIndex>();
            AddIndex(this);
        }

Same methods

AzureIndex::AzureIndex ( string name, string folder, IIndexPropertyStore propertyStore ) : Microsoft.Azure.Search
AzureIndex::AzureIndex ( string name, string folder, IIndexPropertyStore propertyStore, string group ) : Microsoft.Azure.Search