Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) Benefit of XML Methods Having Names Ending in "2"The Chilkat XML methods having names ending with "2" update the internal reference rather than return a new XML object instance. See the example below.. Note: There are a few methods, such as LoadXml2, where the "2" simply indicates the method is the same but has an additional argument. (There are some programming environments where overloading methods is not allowed. Therefore, Chilkat will avoid providing methods having the same name but with different arguments.)
Dim x As String = "<test><abc><xyz>123</xyz></abc></test>" Dim xml As New Chilkat.Xml Dim success As Boolean = xml.LoadXml(x) ' First demonstrate getting "123" in the simplest way: Debug.WriteLine(xml.ChilkatPath("abc|xyz|*")) ' Now demonstrate navigating to the "xyz" node using non-"2" methods. ' The following few lines of code create two object instances, which will need ' to be deleted or garbage collected. Dim xAbc As Chilkat.Xml = xml.FindChild("abc") Dim xXyz As Chilkat.Xml = xAbc.FindChild("xyz") Debug.WriteLine(xXyz.Content) ' Now demonstrate navigating to the "xyz" node using the "2" methods. ' No object instances are created. success = xml.FindChild2("abc") success = xml.FindChild2("xyz") Debug.WriteLine(xml.Content) ' Restore xml back to the root of the document. xml.GetRoot2() |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.