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