We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df2d102 commit 6a4db98Copy full SHA for 6a4db98
dotnet/Search/BingEntitySearchv7.cs
@@ -6,14 +6,13 @@ namespace BingEntitySearch
6
{
7
class Program
8
9
+ // Add your key and endpoint to your environment variables.
10
+ static string key = Environment.GetEnvironmentVariable("BING_ENTITY_SEARCH_SUBSCRIPTION_KEY");
11
static string endpoint = Environment.GetEnvironmentVariable("BING_ENTITY_SEARCH_ENDPOINT");
12
static string path = "/bing/v7.0/entities/";
13
14
static string market = "en-US";
15
- // NOTE: Replace this example key with a valid subscription key.
- static string key = Environment.GetEnvironmentVariable("BING_ENTITY_SEARCH_SUBSCRIPTION_KEY");
16
-
17
static string query = "italian restaurant near me";
18
19
async static void Search()
0 commit comments