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.245.0.0 (8.245.0.0)
Syntax public IEnumerable<Process> FindReceivingProcesses(
Guid sessionId,
string processName,
string processRevision
)
Public Function FindReceivingProcesses (
sessionId As Guid,
processName As String,
processRevision As String
) As IEnumerable(Of Process)
public:
virtual IEnumerable<Process^>^ FindReceivingProcesses(
Guid sessionId,
String^ processName,
String^ processRevision
) sealed
abstract FindReceivingProcesses :
sessionId : Guid *
processName : string *
processRevision : string -> IEnumerable<Process>
override FindReceivingProcesses :
sessionId : Guid *
processName : string *
processRevision : string -> IEnumerable<Process>
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:
IEnumerableProcessA list of
Process objects matching the search parameters.
The total size of this list is limited to 1000 processes.
Exceptions See Also