'Declaration
<NotNullAttribute()> Default Property Item( _ ByVal index As Integer _ ) As UADiscoveryElement
'Usage
Dim instance As _UADiscoveryElementCollection Dim index As Integer Dim value As UADiscoveryElement instance.Item(index) = value value = instance.Item(index)
[NotNull()] UADiscoveryElement this[ int index ]; {get; set;}
[NotNull()] property UADiscoveryElement^ default [int] { UADiscoveryElement^ get(int index); void set (int index, UADiscoveryElement^ value); }
Parameters
- index
Property Value
The value of this property cannot be null
(Nothing
in Visual Basic).
Because OpcLabs.EasyOpc.UA.Discovery.UAApplicationElement has an implicit conversion to OpcLabs.EasyOpc.UA.UAEndpointDescriptor, you can simply use the returned OpcLabs.EasyOpc.UA.Discovery.UAApplicationElement in any place where OpcLabs.EasyOpc.UA.UAEndpointDescriptor is expected as input, and the corresponding endpoint descriptor will be constructed automatically from the application element. When the implicit conversion operators are not supported (such as with Python.NET), you can use the ToUAEndpointDescriptor static method instead.
Because OpcLabs.EasyOpc.UA.Discovery.UADiscoveryElement has an implicit conversion to OpcLabs.EasyOpc.UA.UAEndpointDescriptor, you can simply use the returned OpcLabs.EasyOpc.UA.Discovery.UADiscoveryElement in any place where OpcLabs.EasyOpc.UA.UAEndpointDescriptor is expected as input, and the corresponding endpoint descriptor will be constructed automatically from the discovery element. When the implicit conversion operators are not supported (such as with Python.NET), you can use the ToUAEndpointDescriptor static method instead.