你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
FailActivity Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of FailActivity.
public FailActivity (string name, Azure.Core.Expressions.DataFactory.DataFactoryElement<string> message, Azure.Core.Expressions.DataFactory.DataFactoryElement<string> errorCode);
new Azure.ResourceManager.DataFactory.Models.FailActivity : string * Azure.Core.Expressions.DataFactory.DataFactoryElement<string> * Azure.Core.Expressions.DataFactory.DataFactoryElement<string> -> Azure.ResourceManager.DataFactory.Models.FailActivity
Public Sub New (name As String, message As DataFactoryElement(Of String), errorCode As DataFactoryElement(Of String))
Parameters
- name
- String
Activity name.
- message
- DataFactoryElement<String>
The error message that surfaced in the Fail activity. It can be dynamic content that's evaluated to a non empty/blank string at runtime. Type: string (or Expression with resultType string).
- errorCode
- DataFactoryElement<String>
The error code that categorizes the error type of the Fail activity. It can be dynamic content that's evaluated to a non empty/blank string at runtime. Type: string (or Expression with resultType string).
Exceptions
name
, message
or errorCode
is null.