你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Index.Hash 方法

定义

重载

Hash(DataType)

返回具有 Azure Cosmos DB 服务的指定 DataType 的 类的实例 HashIndex

Hash(DataType, Int16)

返回具有 Azure Cosmos DB 服务的指定数据类型和精度的 类的实例 HashIndex

Hash(DataType)

返回具有 Azure Cosmos DB 服务的指定 DataType 的 类的实例 HashIndex

public static Microsoft.Azure.Documents.HashIndex Hash (Microsoft.Azure.Documents.DataType dataType);
static member Hash : Microsoft.Azure.Documents.DataType -> Microsoft.Azure.Documents.HashIndex
Public Shared Function Hash (dataType As DataType) As HashIndex

参数

dataType
DataType

指定索引路径规范的目标数据类型。

返回

类型的实例 HashIndex

示例

下面是创建传入 DataType 的 HashIndex 实例的示例:

HashIndex hashIndex = Index.Hash(DataType.String);

另请参阅

适用于

Hash(DataType, Int16)

返回具有 Azure Cosmos DB 服务的指定数据类型和精度的 类的实例 HashIndex

public static Microsoft.Azure.Documents.HashIndex Hash (Microsoft.Azure.Documents.DataType dataType, short precision);
static member Hash : Microsoft.Azure.Documents.DataType * int16 -> Microsoft.Azure.Documents.HashIndex
Public Shared Function Hash (dataType As DataType, precision As Short) As HashIndex

参数

dataType
DataType

指定索引路径规范的目标数据类型。

precision
Int16

指定要用于与此索引关联的数据类型的精度。

返回

类型的实例 HashIndex

示例

下面是创建传入 DataType 和精度的 HashIndex 实例的示例:

HashIndex hashIndex = Index.Hash(DataType.String, 3);

另请参阅

适用于