Skip to main content
Skip table of contents

SaveProperty Method

Saves a property back to the process.

CODE
public void SaveProperty(dynamic property);

Classes: Properties


Parameters

dynamic property

Dynamic property object.


Example

The following example demonstrates changing the value of a property returned from the GetPropertyByName method, and then saving it back.

CODE
var property = Process.Properties.GetPropertyByName("Name");
property.Value = "John";
Process.Properties.SaveProperty(property);

Remarks

If you have made changes that do not conform to the managed property object, this method will throw a serialization exception.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.