Click or drag to resize

IAMLLibraryServiceGetAMLModelDocumentsAsync Method

Gets a collection of all available AMLFiles, which contain AutomationML models from the registered server. If an authorization is needed, it can be provided by the accessToken. The listed files will contain a download URL which can be used to load the AML-File into a CAEXDocument by calling LoadAMLFileAsync(AMLFileModel).

Namespace: Aml.Engine.Services.Interfaces
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
Task<List<AMLFileModel>> GetAMLModelDocumentsAsync(
	string accessToken
)

Parameters

accessToken  String
Authorization to access the server resources.

Return Value

TaskListAMLFileModel
A collection of availabe AutomationML files, containg AML models.
See Also