'Declaration
<ExtensionAttribute()> <ElementsNotNullAttribute()> <NotNullAttribute()> Public Shared Function GetMultipleFileProperties( _ ByVal fileTransfer As IEasyUAFileTransfer, _ ByVal endpointDescriptor As UAEndpointDescriptor, _ ByVal fileNodeDescriptorArray As IReadOnlyList(Of UANodeDescriptor) _ ) As ValueResult(Of UAFileProperties)()
'Usage
Dim fileTransfer As IEasyUAFileTransfer Dim endpointDescriptor As UAEndpointDescriptor Dim fileNodeDescriptorArray As IReadOnlyList(Of UANodeDescriptor) Dim value() As ValueResult(Of UAFileProperties) value = IEasyUAFileTransferExtension.GetMultipleFileProperties(fileTransfer, endpointDescriptor, fileNodeDescriptorArray)
[Extension()] [ElementsNotNull()] [NotNull()] public static ValueResult<UAFileProperties>[] GetMultipleFileProperties( IEasyUAFileTransfer fileTransfer, UAEndpointDescriptor endpointDescriptor, IReadOnlyList<UANodeDescriptor> fileNodeDescriptorArray )
[Extension()] [ElementsNotNull()] [NotNull()] public: static array<ValueResult<UAFileProperties^>^>^ GetMultipleFileProperties( IEasyUAFileTransfer^ fileTransfer, UAEndpointDescriptor^ endpointDescriptor, IReadOnlyList<UANodeDescriptor^>^ fileNodeDescriptorArray )
Parameters
- fileTransfer
- The OPC UA file transfer object that will perform the operation.
- endpointDescriptor
- Endpoint descriptor. Identifies the OPC-UA server.
- fileNodeDescriptorArray
- An array of node descriptors of files whose properties should be obtained.
Return Value
Returns an array of value result objects, with objects that contain the retrieved file properties (in case of success) or an exception indication (in case of failure).