次の方法で共有


RequestOptions.IndexingDirective プロパティ

定義

Azure Cosmos DB サービスの要求のインデックス作成ディレクティブ (Include または Exclude) を取得または設定します。

public Microsoft.Azure.Documents.IndexingDirective? IndexingDirective { get; set; }
member this.IndexingDirective : Nullable<Microsoft.Azure.Documents.IndexingDirective> with get, set
Public Property IndexingDirective As Nullable(Of IndexingDirective)

プロパティ値

要求で使用するインデックス作成ディレクティブ。

次の例は、自動インデックス作成が無効になっているコレクション内のドキュメントに明示的にインデックスを付ける方法を示しています。

client.CreateDocumentAsync(defaultCollection.SelfLink,
    new { id = "AndersenFamily", isRegistered = true },
    new RequestOptions { IndexingDirective = IndexingDirective.Include });

適用対象

こちらもご覧ください