OPC Studio User's Guide and Reference
GetEffectiveApplicationManifest Method (_EasyUAClientServerApplication)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Application.ComTypes Namespace > _EasyUAClientServerApplication Interface : GetEffectiveApplicationManifest Method
Gets the effective OPC UA application manifest, i.e. the currently used application registration information together with data related to PKI administration, such as paths to the certificate stores used.
Syntax
'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.

Returns the OPC UA application manifest object.

This method never returns null (Nothing in Visual Basic).

Exceptions
ExceptionDescription
An error has occurred during application execution.

The OPC UA operation has failed. This operation exception in uniformly used to allow common handling of various kinds of errors. The System.Exception.InnerException always contains information about the actual error cause.

This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately.

Remarks

This member or type is for use from COM. It is not meant to be used from .NET or Python. Refer to the corresponding .NET member or type instead, if you are developing in .NET or Python.

This method is pure, i.e. it does not have observable side effects.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also