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

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

static private ImportFromJSON ( string IndexName ) : void
IndexName string
Результат void
        static void ImportFromJSON(string IndexName)
        {
            // Take JSON file and import this as-is to target index
            try
            {
                foreach (string fileName in Directory.GetFiles("..\\..\\..\\..\\NYCJobsWeb\\Schema_and_Data\\", IndexName + "*.json"))
                {
                    Console.WriteLine("Uploading documents from file {0}", fileName);
                    string json = File.ReadAllText(fileName);
                    Uri uri = new Uri(ServiceUri, "/indexes/"+ IndexName + "/docs/index");
                    HttpResponseMessage response = AzureSearchHelper.SendSearchRequest(HttpClient, HttpMethod.Post, uri, json);
                    response.EnsureSuccessStatusCode();
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error: {0}", ex.Message.ToString());
            }
        }