RangeIndex コンストラクター

定義

オーバーロード

RangeIndex(DataType)

Azure Cosmos DB サービスの DataType を指定して RangeIndex 、 クラスの新しいインスタンスを初期化します。

RangeIndex(DataType, Int16)

Azure Cosmos DB サービスの DataType と有効桁数を RangeIndex 指定して、 クラスの新しいインスタンスを初期化します。

RangeIndex(DataType)

Azure Cosmos DB サービスの DataType を指定して RangeIndex 、 クラスの新しいインスタンスを初期化します。

public RangeIndex (Microsoft.Azure.Documents.DataType dataType);
new Microsoft.Azure.Documents.RangeIndex : Microsoft.Azure.Documents.DataType -> Microsoft.Azure.Documents.RangeIndex
Public Sub New (dataType As DataType)

パラメーター

dataType
DataType

インデックス パス指定のターゲット データ型を指定します。

DataType を渡す RangeIndex クラスをインスタンス化する例を次に示します。

RangeIndex rangeIndex = new RangeIndex(DataType.Number);

こちらもご覧ください

適用対象

RangeIndex(DataType, Int16)

Azure Cosmos DB サービスの DataType と有効桁数を RangeIndex 指定して、 クラスの新しいインスタンスを初期化します。

public RangeIndex (Microsoft.Azure.Documents.DataType dataType, short precision);
new Microsoft.Azure.Documents.RangeIndex : Microsoft.Azure.Documents.DataType * int16 -> Microsoft.Azure.Documents.RangeIndex
Public Sub New (dataType As DataType, precision As Short)

パラメーター

dataType
DataType

インデックス パス指定のターゲット データ型を指定します。

precision
Int16

このインデックスに関連付けられているデータ型に使用する有効桁数を指定します。

DataType と有効桁数を渡して RangeIndex クラスをインスタンス化する例を次に示します。

RangeIndex rangeIndex = new RangeIndex(DataType.Number, -1);

こちらもご覧ください

適用対象