次の方法で共有


DocumentsOperationsExtensions.Get メソッド

定義

オーバーロード

Get(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions)

検索インデックスからドキュメントを取得します。 https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

Get<T>(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions)

検索インデックスからドキュメントを取得します。 https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

Get(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions)

ソース:
DocumentsOperationsExtensions.cs

検索インデックスからドキュメントを取得します。 https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

public static Microsoft.Azure.Search.Models.Document Get (this Microsoft.Azure.Search.IDocumentsOperations operations, string key, System.Collections.Generic.IEnumerable<string> selectedFields = default, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default);
static member Get : Microsoft.Azure.Search.IDocumentsOperations * string * seq<string> * Microsoft.Azure.Search.Models.SearchRequestOptions -> Microsoft.Azure.Search.Models.Document
<Extension()>
Public Function Get (operations As IDocumentsOperations, key As String, Optional selectedFields As IEnumerable(Of String) = Nothing, Optional searchRequestOptions As SearchRequestOptions = Nothing) As Document

パラメーター

operations
IDocumentsOperations

この拡張メソッドの操作グループ。

key
String

取得するドキュメントのキー。有効なドキュメント キーを作成するための規則については、 を参照してください https://docs.microsoft.com/rest/api/searchservice/Naming-rules

selectedFields
IEnumerable<String>

ドキュメント用に取得するフィールド名のリスト。取得されないフィールドは、返されたドキュメントに表示されません。 既定では、取得可能なすべてのフィールドが結果に含まれます。

searchRequestOptions
SearchRequestOptions

操作の追加パラメーター

戻り値

要求されたドキュメント。

注釈

Get、GetAsync、GetWithHttpMessagesAsync メソッドの非ジェネリック オーバーロードでは、応答ペイロード内の JSON 型を .NET 型にマップすることをベスト エフォートで試みます。 詳細については、「 GetWithHttpMessagesAsync(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken) 」を参照してください。

適用対象

Get<T>(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions)

ソース:
DocumentsOperationsExtensions.cs

検索インデックスからドキュメントを取得します。 https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

public static T Get<T> (this Microsoft.Azure.Search.IDocumentsOperations operations, string key, System.Collections.Generic.IEnumerable<string> selectedFields = default, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default);
static member Get : Microsoft.Azure.Search.IDocumentsOperations * string * seq<string> * Microsoft.Azure.Search.Models.SearchRequestOptions -> 'T
<Extension()>
Public Function Get(Of T) (operations As IDocumentsOperations, key As String, Optional selectedFields As IEnumerable(Of String) = Nothing, Optional searchRequestOptions As SearchRequestOptions = Nothing) As T

型パラメーター

T

インデックス スキーマにマッピングされる CLR タイプ。 この型のインスタンスは、インデックスからドキュメントとして取得できます。

パラメーター

operations
IDocumentsOperations

この拡張メソッドの操作グループ。

key
String

取得するドキュメントのキー。有効なドキュメント キーを作成するための規則については、 を参照してください https://docs.microsoft.com/rest/api/searchservice/Naming-rules

selectedFields
IEnumerable<String>

ドキュメント用に取得するフィールド名のリスト。取得されないフィールドは、返されるオブジェクトの対応するプロパティ値として null または既定値になります。 既定では、取得可能なすべてのフィールドが結果に含まれます。

searchRequestOptions
SearchRequestOptions

操作の追加パラメーター

戻り値

T

要求されたドキュメント。

注釈

Get、GetAsync、GetWithHttpMessagesAsync メソッドのジェネリック オーバーロードでは、型パラメーター T を使用した Azure Search フィールド型と .NET 型のマッピングがサポートされています。型マッピングの詳細については、 を参照してください GetWithHttpMessagesAsync<T>(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

適用対象