Click or drag to resize

ProcessServicesGetActivityFiles Method

Retrieves a list information regarding the files associated to the specified activity. The returned list does not contain the content of the files, which may be acquired subsequently using the GetActivityFileContent(Guid, Guid) method.

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<ActivityFile> GetActivityFiles(
	Guid sessionId,
	Guid activityId
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
activityId
Type: SystemGuid
The unique identifier of the activity whose files are sought.

Return Value

Type: IEnumerableActivityFile
A list of ActivityFile objects represeting information about the activity's associated files.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
NotFoundExceptionAn existing part with matching Id property was not found in the system.
See Also