 | 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.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
SyntaxTask<List<AMLFileModel>> GetAMLModelDocumentsAsync(
string accessToken
)
Function GetAMLModelDocumentsAsync (
accessToken As String
) As Task(Of List(Of AMLFileModel))
Task<List<AMLFileModel^>^>^ GetAMLModelDocumentsAsync(
String^ accessToken
)
Parameters
- accessToken String
- Authorization to access the server resources.
Return Value
TaskListAMLFileModelA collection of availabe AutomationML files, containg AML models.
See Also