Excerpt |
---|
Gets a list of of property names on the current process. |
Code Block |
---|
public List<string> GetPropertyNames(); |
Classes: Properties
Returns
List<string>
List of property names.
Example
The following example demonstrates retrieving a list of property names from a process.
Code Block |
---|
var propertyNames = Process.Properties.GetPropertyNames(); |
Remarks
This method returns default workflow property names as well as the names of any properties added at design time.