You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -671,7 +687,7 @@ private static Index CreateDemoIndex(SearchServiceClient serviceClient)
671
687
672
688
During testing you may find that you're attempting to create the index more than once. Because of this, check to see if the index that you're about to create already exists before attempting to create it.
673
689
674
-
Add the following lines to Main.
690
+
Add the following lines to `Main`.
675
691
676
692
```csharp
677
693
// Create the index
@@ -775,7 +791,7 @@ private static Indexer CreateDemoIndexer(SearchServiceClient serviceClient, Data
775
791
return indexer;
776
792
}
777
793
```
778
-
Add the following lines to Main.
794
+
Add the following lines to `Main`.
779
795
780
796
```csharp
781
797
// Create the indexer, map fields, and execute transformations
Warnings are common with some source file and skill combinations and do not always indicate a problem. In this tutorial, the warnings are benign (for example, no text inputs from the JPEG files).
838
854
839
-
Add the following lines to Main.
855
+
Add the following lines to `Main`.
840
856
841
857
```csharp
842
858
// Check indexer overall status
@@ -850,7 +866,7 @@ After indexing is finished, you can run queries that return the contents of indi
850
866
851
867
As a verification step, query the index for all of the fields.
Add the following code to Main. The first try-catch returns the index definition, with the name, type, and attributes of each field. The second is a parameterized query, where `Select` specifies which fields to include in the results, for example `organizations`. A search string of `"*"` returns all contents of a single field.
905
+
Add the following code to `Main`. The first try-catch returns the index definition, with the name, type, and attributes of each field. The second is a parameterized query, where `Select` specifies which fields to include in the results, for example `organizations`. A search string of `"*"` returns all contents of a single field.
890
906
891
907
```csharp
892
908
//Verify content is returned after indexing is finished
0 commit comments