AzureSearchBackupRestore.Program.LaunchImportProcess C# (CSharp) Метод

LaunchImportProcess() приватный статический Метод

private static LaunchImportProcess ( string IndexName ) : void
IndexName string
Результат void
        private static void LaunchImportProcess(string IndexName)
        {
            // Re-create and import content to target index
            Console.WriteLine("Deleting " + IndexName + " index...");
            DeleteIndex(IndexName);
            Console.WriteLine("Creating " + IndexName + " index...");
            CreateTargetIndex(IndexName);
            Console.WriteLine("Uploading data to " + IndexName + "...");
            ImportFromJSON(IndexName);
        }