Custom Nodes Square9.CustomNode SDK Methods Current: GetPropertyNames Method GetPropertyNames Method Gets a list of of property names on the current process. public List<string> GetPropertyNames(); CODE Classes: Properties ReturnsList<string>List of property names. ExampleThe following example demonstrates retrieving a list of property names from a process. var propertyNames = Process.Properties.GetPropertyNames(); CODE RemarksThis method returns default workflow property names as well as the names of any properties added at design time. ×