Click or drag to resize

AMLHttpClientLibraryServiceGetAMLModelDocumentsAsync 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.LibraryService
Assembly: Aml.Engine.Services.LibraryService (in Aml.Engine.Services.LibraryService.dll) Version: 1.0
Syntax
public abstract 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.

Implements

IAMLLibraryServiceGetAMLModelDocumentsAsync(String)
See Also