OPC Studio User's Guide and Reference
AddressSpaceError Event



OpcLabs.ServerOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > EasyUAServerCore Class : AddressSpaceError Event
Raised when a failure occurs during creation of the address space.
Syntax
'Declaration
 
Public Event AddressSpaceError As EventHandler(Of FailureEventArgs)
'Usage
 
Dim instance As EasyUAServerCore
Dim handler As EventHandler(Of FailureEventArgs)
 
AddHandler instance.AddressSpaceError, handler
public event EventHandler<FailureEventArgs> AddressSpaceError
public:
event EventHandler<FailureEventArgs^>^ AddressSpaceError
Event Data

The event handler receives an argument of type FailureEventArgs containing data related to this event. The following FailureEventArgs properties provide information specific to this event.

PropertyDescription
Contains the Exception carried by the event arguments.  
Remarks

Address space error can occur, for example, when the node requires a namespace that cannot be resolved.

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