.NET Object to YAML
Description
Converts .NET object to YAML.
Properties
Input
- Object – The .NET object to be serialized to YAML file.
note
Choose the appropriate object type while adding this activity into the sequence.
- Naming Convention – The naming convention to be used for naming properties in YAML. 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 |
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
Output
- Result – Generated YAML from the specified .NET type.
Example
Download Example