InputDescriptor 构造函数 (String, Type, String, String, AutoAssignedInput)
使用提供的参数初始化 InputDescriptor 类的新实例。
命名空间: Microsoft.Data.Schema.Tools.DataGenerator
程序集: Microsoft.Data.Schema.Tools(在 Microsoft.Data.Schema.Tools.dll 中)
语法
声明
Public Sub New ( _
key As String, _
type As Type, _
name As String, _
description As String, _
inputType As AutoAssignedInput _
)
public InputDescriptor(
string key,
Type type,
string name,
string description,
AutoAssignedInput inputType
)
public:
InputDescriptor(
String^ key,
Type^ type,
String^ name,
String^ description,
AutoAssignedInput inputType
)
new :
key:string *
type:Type *
name:string *
description:string *
inputType:AutoAssignedInput -> InputDescriptor
public function InputDescriptor(
key : String,
type : Type,
name : String,
description : String,
inputType : AutoAssignedInput
)
参数
- key
类型:System.String
用于唯一标识输入值的键。对于默认生成器,此键为属性名称。
- type
类型:System.Type
输入值的数据类型。
- name
类型:System.String
输入的友好名称。此名称显示在**“属性”**窗口中。
- description
类型:System.String
输入的描述。此描述显示在**“属性”**窗口中。
- inputType
类型:Microsoft.Data.Schema.Tools.DataGenerator.AutoAssignedInput
指示输入类型的 AutoAssignedInput 枚举的成员。此参数用于为已知输入类型指定输入类型。
备注
inputType 参数可以具有 AutoAssignedInput 定义的任何一种已知的输入类型,包括 Seed()、Nullable()、PercentageNull()、Unique() 等等。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。