Home
VB.Net
2D
Application
Class
Data Structure
Data Types
Database ADO.net
Date Time
Development
Event
File Directory
Generics
GUI
Internationalization I18N
Language Basics
LINQ
Network Remote
Reflection
Security
Thread
Windows Presentation Foundation
Windows System
XML
XML LINQ
XML Load « XML LINQ « VB.Net
VB.Net
XML LINQ
XML Load
1.
using XElement.Parse to load Xml from String
2.
XElement.Parse (String) Loads an XElement from a string that contains XML.
3.
XElement.Parse Method (String, LoadOptions) Loads an XElement from a string that contains XML
4.
XElement.Parse(String, LoadOptions.SetLineInfo)
5.
Load the Employees.xml and store the contents into an XElement object.
6.
XElement.Load (String) loads an XElement from a file.
7.
XElement.Load (String, LoadOptions) loads an XElement from a file
8.
XElement.Load("Order.xml", LoadOptions.SetBaseUri Or LoadOptions.SetLineInfo)
9.
XElement.Load (TextReader) loads an XElement from a TextReader.
10.
XElement.Load(TextReader, LoadOptions) loads an XElement from a TextReader
11.
XElement.Load(TextReader, LoadOptions.SetLineInfo)