'Declaration
Public ReadOnly Property EffectiveMessageSecurityModes As UAMessageSecurityModes
'Usage
Dim instance As EasyUAServerCore Dim value As UAMessageSecurityModes value = instance.EffectiveMessageSecurityModes
public UAMessageSecurityModes EffectiveMessageSecurityModes {get;}
public: property UAMessageSecurityModes EffectiveMessageSecurityModes { UAMessageSecurityModes get(); }
Property Value
The default value of this property is All (UAMessageSecurityModes.All)
.
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.