これはクエリ用のコードです。C#でのGoogleカスタム検索API:ページング
String query = 'abc';
CustomsearchService customSearchService = new CustomsearchService(new Google.Apis.Services.BaseClientService.Initializer() { ApiKey = apiKey });
Google.Apis.Customsearch.v1.CseResource.ListRequest listRequest = customSearchService.Cse.List(query);
listRequest.Cx = searchEngineId;
search_results = listRequest.Execute();
ここでフィルタリングのようなオプションを追加するにはどうすればよいですか? 全体のインターネットとgithubを検索しましたが、サンプルコードや適切な文書が見つかりませんでした。
おかげで、それはパラメータに関する適切な文書を持っていない、と私はどのPARAMTERを使用できない場合は、それがエラーを生成使用する。 これはgithubのURLです。 https://github.com/google/google-api-dotnet-client/tree/master/Src/Generated/Google.Apis.Customsearch.v1 –