'Declaration
<CanBeNullAttribute()> Function FindConnectionElement( _ ByVal pubSubConnectionName As String _ ) As UAPubSubConnectionElement
'Usage
Dim instance As IUAReadOnlyPubSubConfiguration Dim pubSubConnectionName As String Dim value As UAPubSubConnectionElement value = instance.FindConnectionElement(pubSubConnectionName)
[CanBeNull()] UAPubSubConnectionElement FindConnectionElement( string pubSubConnectionName )
[CanBeNull()] UAPubSubConnectionElement^ FindConnectionElement( String^ pubSubConnectionName )
Parameters
- pubSubConnectionName
- The name of the PubSub connection.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).
Return Value
null
otherwise.
Because the UAPubSubConnectionElement has an implicit conversion to OpcLabs.EasyOpc.UA.PubSub.UAPubSubConnectionDescriptor, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use the returned UAPubSubConnectionElement (from PubSub configuration) in any place where OpcLabs.EasyOpc.UA.PubSub.UAPubSubConnectionDescriptor is expected as input, and the corresponding OPC UA PubSub connection descriptor will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can convert a UAPubSubConnectionElement to OpcLabs.EasyOpc.UA.PubSub.UAPubSubConnectionDescriptor using the UAPubSubConnectionElement.ToUAPubSubConnectionDescriptor static method instead.
This method can return null
(Nothing
in Visual Basic).