OPC Studio User's Guide and Reference
MessageSecurityModes Property (EasyUAServerEndpointStateChangedEventArgs)



OpcLabs.ServerOpcUA Assembly > OpcLabs.EasyOpc.UA.OperationModel Namespace > EasyUAServerEndpointStateChangedEventArgs Class : MessageSecurityModes Property
The (effective) message security modes of the endpoint.
Syntax
'Declaration
 
Public Property MessageSecurityModes As UAMessageSecurityModes
'Usage
 
Dim instance As EasyUAServerEndpointStateChangedEventArgs
Dim value As UAMessageSecurityModes
 
instance.MessageSecurityModes = value
 
value = instance.MessageSecurityModes
public UAMessageSecurityModes MessageSecurityModes {get; set;}
public:
property UAMessageSecurityModes MessageSecurityModes {
   UAMessageSecurityModes get();
   void set (    UAMessageSecurityModes value);
}

Property Value

The default value of this property is None.

Because there is an implicit conversion from OpcLabs.EasyOpc.UA.Engine.UAMessageSecurityModes to OpcLabs.EasyOpc.UA.Engine.UAEndpointSelectionPolicy, you can simply use the returned OpcLabs.EasyOpc.UA.Engine.UAMessageSecurityModes in any place where OpcLabs.EasyOpc.UA.Engine.UAEndpointSelectionPolicy is expected as input, and the corresponding endpoint selection policy will be constructed automatically from the message security modes. When the implicit conversion operators are not supported (such as with Python.NET), you can use the OpcLabs.EasyOpc.UA.Engine.UAEndpointSelectionPolicy.FromUAMessageSecurityModes static method instead.

Remarks

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

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