 | NextCloudClientGetAMLModelDocumentsAsync 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.LibraryServiceAssembly: Aml.Engine.Services.LibraryService (in Aml.Engine.Services.LibraryService.dll) Version: 1.0
Syntaxpublic override Task<List<AMLFileModel>> GetAMLModelDocumentsAsync(
string accessToken
)
Public Overrides Function GetAMLModelDocumentsAsync (
accessToken As String
) As Task(Of List(Of AMLFileModel))
public:
virtual Task<List<AMLFileModel^>^>^ GetAMLModelDocumentsAsync(
String^ accessToken
) override
Parameters
- accessToken String
- Authorization to access the server resources.
Return Value
TaskListAMLFileModelA collection of availabe AutomationML files, containg AML models.
Implements
IAMLLibraryServiceGetAMLModelDocumentsAsync(String)
See Also