Write YAML File
Description
Serializes specified .NET object to YAML file.
Properties
Input
- File Name – The path of the YAML file.
- Naming Convention – The naming convention to be used for naming properties in the YAML file. The following options are available.
Naming Convention | Description |
---|---|
CamlCase | The properties will be named using CamlCase standards. For example: myProperty |
PascalCase | The properties will be named using PascalCase standards. For example: MyProperties |
lowercase | The properties will be named using lower case alphabets. For example: myproperty |
Hyphenated | Hyphens will be used to separate words while naming the properties. For example: My-Property |
Underscored | Underscore will be used to separate words while naming the properties. For example: My_Property |
- Object – The .NET object to be serialized to YAML file.
info
Choose the appropriate object type while adding this activity into the sequence.
Optional
- Continue On Error – Specifies if the automation should continue even when the activity throws an error. This field only supports Boolean values (True, False). The default value is False.
note
If this activity is present inside the Try Catch activity and the value of this property is True, it will ignore errors during the execution of automation.
Misc
- DisplayName – The display name of the activity.
- Private – If selected, the values of variables and arguments supplied will never be logged
Example
Download Example