Click or drag to resize

ProcessServicesFindReceivingProcesses Method

Retrieves a list of receiving process definitions based on their name and process revision.

Namespace:  FactoryLogix.xTend.ProcessDefinition
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public IEnumerable<Process> FindReceivingProcesses(
	Guid sessionId,
	string processName,
	string processRevision
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
processName
Type: SystemString
The name of the process as it was defined by the user who created it.
processRevision
Type: SystemString
The process revision that is being sought. This parameter may contain wildcard ("*") specifiers. It the parameter is set to "*", all process revisions in the revision chain of the specified process will be returned. If this parameter is null or an empty string, the process revision presently marked as "Latest" will be returned. If no process revision is marked as "Latest", the most recent (highest sequence) process revision will be returned.

Return Value

Type: IEnumerableProcess
A list of Process objects matching the search parameters. The total size of this list is limited to 1000 processes.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
See Also