'Declaration<JetBrains.Annotations.CanBeNullAttribute()> Public Shared Function UpdateFromElements( _ ByVal subscribeDataSetFilter As UASubscribeDataSetFilter, _ ByVal effectiveTransportProfileUriString As String, _ ByVal writerGroupElement As UAWriterGroupElement, _ ByVal dataSetWriterElement As UADataSetWriterElement, _ ByVal groupDataSetWriterElements As IReadOnlyList(Of UADataSetWriterElement), _ ByVal dataSetMetaData As UADataSetMetaData, _ ByVal relaxed As Boolean _ ) As Exception
'UsageDim subscribeDataSetFilter As UASubscribeDataSetFilter Dim effectiveTransportProfileUriString As String Dim writerGroupElement As UAWriterGroupElement Dim dataSetWriterElement As UADataSetWriterElement Dim groupDataSetWriterElements As IReadOnlyList(Of UADataSetWriterElement) Dim dataSetMetaData As UADataSetMetaData Dim relaxed As Boolean Dim value As Exception value = UASubscribeDataSetFilter.UpdateFromElements(subscribeDataSetFilter, effectiveTransportProfileUriString, writerGroupElement, dataSetWriterElement, groupDataSetWriterElements, dataSetMetaData, relaxed)
[JetBrains.Annotations.CanBeNull()] public static Exception UpdateFromElements( UASubscribeDataSetFilter subscribeDataSetFilter, string effectiveTransportProfileUriString, UAWriterGroupElement writerGroupElement, UADataSetWriterElement dataSetWriterElement, IReadOnlyList<UADataSetWriterElement> groupDataSetWriterElements, UADataSetMetaData dataSetMetaData, bool relaxed )
[JetBrains.Annotations.CanBeNull()] public: static Exception^ UpdateFromElements( UASubscribeDataSetFilter^ subscribeDataSetFilter, String^ effectiveTransportProfileUriString, UAWriterGroupElement^ writerGroupElement, UADataSetWriterElement^ dataSetWriterElement, IReadOnlyList<UADataSetWriterElement^>^ groupDataSetWriterElements, UADataSetMetaData^ dataSetMetaData, bool relaxed )
Parameters
- subscribeDataSetFilter
- The subscribe dataset filter to update. Must not be null.
Because the UASubscribeDataSetFilter has an implicit conversion from UAPublisherId, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use a UAPublisherId (containing the publisher Id that you want to allow in the filter) in place of this parameter, and the corresponding OPC UA subscribe dataset filter will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the FromUAPublisherId static method instead.
The value of this parameter cannot be
null(Nothingin Visual Basic). - effectiveTransportProfileUriString
- The URI string of the effective PubSub transport profile. Must not be null.
The value of this parameter cannot be
null(Nothingin Visual Basic). - writerGroupElement
- The writer group configuration element, or null if not available.
The value of this parameter can be
null(Nothingin Visual Basic). - dataSetWriterElement
- The dataset writer configuration element, or null if not available.
The value of this parameter can be
null(Nothingin Visual Basic). - groupDataSetWriterElements
- A list of all dataset writer elements in the group, or null if not available.
The value of this parameter can be
null(Nothingin Visual Basic).The individual elements of the parameter value cannot be
null(Nothingin Visual Basic). - dataSetMetaData
- The dataset metadata, or null if not available.
The value of this parameter can be
null(Nothingin Visual Basic). - relaxed
- When
true, allow errors in required field values.
Return Value
null on success, or an exception describing the error if relaxed is true.
This method can return null (Nothing in Visual Basic).