 | IAMLLibraryServiceGetAMLLibraryDocumentsAsync Method |
Gets a collection of all available AMLFiles, which contain AutomationML linraries
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>> GetAMLLibraryDocumentsAsync(
string accessToken
)
Function GetAMLLibraryDocumentsAsync (
accessToken As String
) As Task(Of List(Of AMLFileModel))
Task<List<AMLFileModel^>^>^ GetAMLLibraryDocumentsAsync(
String^ accessToken
)
Parameters
- accessToken String
- Authorization to access the server resources.
Return Value
TaskListAMLFileModelA collection of availabe AutomationML files, containing AML libraries.
See Also