Gets a list of of property names on the current process.

public List<string> GetPropertyNames();
CODE

Classes: Properties


Returns

List<string>

List of property names.


Example

The following example demonstrates retrieving a list of property names from a process.

var propertyNames = Process.Properties.GetPropertyNames();
CODE

Remarks

This method returns default workflow property names as well as the names of any properties added at design time.