你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
OcrSkill 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 OcrSkill 的新实例。
public OcrSkill (System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs);
new Azure.Search.Documents.Indexes.Models.OcrSkill : seq<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> * seq<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> -> Azure.Search.Documents.Indexes.Models.OcrSkill
Public Sub New (inputs As IEnumerable(Of InputFieldMappingEntry), outputs As IEnumerable(Of OutputFieldMappingEntry))
参数
- inputs
- IEnumerable<InputFieldMappingEntry>
技能的输入可以是源数据集中的列,也可以是上游技能的输出。
- outputs
- IEnumerable<OutputFieldMappingEntry>
技能的输出要么是搜索索引中的字段,要么是另一个技能可以用作输入的值。
例外
inputs
或 outputs
为 null。