'Declaration
<NotNullAttribute()> Function GetEffectiveApplicationManifest() As UAApplicationManifest
'Usage
Dim instance As _EasyUAClientServerApplication Dim value As UAApplicationManifest value = instance.GetEffectiveApplicationManifest()
[NotNull()] UAApplicationManifest GetEffectiveApplicationManifest()
[NotNull()] UAApplicationManifest^ GetEffectiveApplicationManifest();
Return Value
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 OpcLabs.EasyOpc.UA.Discovery.UAApplicationElement.ToUAEndpointDescriptor static method instead.
This method never returns null
(Nothing
in Visual Basic).