TypeUsage.CreateStringTypeUsage 方法

定义

使用指定的 facet 值创建一个 TypeUsage 对象来描述字符串类型。

重载

CreateStringTypeUsage(PrimitiveType, Boolean, Boolean)

使用指定的分面值和未绑定 MaxLength创建一个 TypeUsage 对象来描述字符串类型。

CreateStringTypeUsage(PrimitiveType, Boolean, Boolean, Int32)

使用指定的 facet 值创建一个 TypeUsage 对象来描述字符串类型。

CreateStringTypeUsage(PrimitiveType, Boolean, Boolean)

使用指定的分面值和未绑定 MaxLength创建一个 TypeUsage 对象来描述字符串类型。

public:
 static System::Data::Metadata::Edm::TypeUsage ^ CreateStringTypeUsage(System::Data::Metadata::Edm::PrimitiveType ^ primitiveType, bool isUnicode, bool isFixedLength);
public static System.Data.Metadata.Edm.TypeUsage CreateStringTypeUsage (System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength);
static member CreateStringTypeUsage : System.Data.Metadata.Edm.PrimitiveType * bool * bool -> System.Data.Metadata.Edm.TypeUsage
Public Shared Function CreateStringTypeUsage (primitiveType As PrimitiveType, isUnicode As Boolean, isFixedLength As Boolean) As TypeUsage

参数

primitiveType
PrimitiveType

为其创建 TypeUsage 对象的 PrimitiveType

isUnicode
Boolean

true 将字符串类型的字符编码标准设置为 Unicode;否则,false

isFixedLength
Boolean

true 将字符串类型的长度设置为固定;否则,false

返回

使用指定的分面值和未绑定 MaxLength描述字符串类型的 TypeUsage 对象。

适用于

CreateStringTypeUsage(PrimitiveType, Boolean, Boolean, Int32)

使用指定的 facet 值创建一个 TypeUsage 对象来描述字符串类型。

public:
 static System::Data::Metadata::Edm::TypeUsage ^ CreateStringTypeUsage(System::Data::Metadata::Edm::PrimitiveType ^ primitiveType, bool isUnicode, bool isFixedLength, int maxLength);
public static System.Data.Metadata.Edm.TypeUsage CreateStringTypeUsage (System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength, int maxLength);
static member CreateStringTypeUsage : System.Data.Metadata.Edm.PrimitiveType * bool * bool * int -> System.Data.Metadata.Edm.TypeUsage
Public Shared Function CreateStringTypeUsage (primitiveType As PrimitiveType, isUnicode As Boolean, isFixedLength As Boolean, maxLength As Integer) As TypeUsage

参数

primitiveType
PrimitiveType

为其创建 TypeUsage 对象的 PrimitiveType

isUnicode
Boolean

true 将字符串类型的字符编码标准设置为 Unicode;否则,false

isFixedLength
Boolean

true 将字符串类型的字符编码标准设置为 Unicode;否则,false

maxLength
Int32

true 将字符串类型的长度设置为固定;否则,false

返回

使用指定的 facet 值描述字符串类型的 TypeUsage 对象。

适用于