Opc.Ua.Core
UpdateExtension<T> Method (Utils)



Opc.Ua Namespace > Utils Class : UpdateExtension<T> Method
The type of the extension.
The list of extensions to update.
Name of the element (use type name if null).
The value.
Looks for an extension with the specified type and uses the DataContractSerializer to serializes its replacement.
Syntax
'Declaration
 
Public Shared Sub UpdateExtension(Of T)( _
   ByRef extensions As XmlElementCollection, _
   ByVal elementName As XmlQualifiedName, _
   ByVal value As Object _
) 
'Usage
 
Dim extensions As XmlElementCollection
Dim elementName As XmlQualifiedName
Dim value As Object
 
Utils.UpdateExtension(Of T)(extensions, elementName, value)
public static void UpdateExtension<T>( 
   ref XmlElementCollection extensions,
   XmlQualifiedName elementName,
   object value
)
public:
static void UpdateExtensiongeneric<typename T>
( 
   XmlElementCollection^% extensions,
   XmlQualifiedName^ elementName,
   Object^ value
) 

Parameters

extensions
The list of extensions to update.
elementName
Name of the element (use type name if null).
value
The value.

Type Parameters

T
The type of the extension.
Remarks
Adds a new extension if the it does not already exist. Deletes the extension if the value is null. The containing element must use the name and namespace uri specified by the DataContractAttribute for the type.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Utils Class
Utils Members