ReplaceAll with a DateTime object : XML Edit « XML LINQ « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » XML LINQ » XML EditScreenshots 
ReplaceAll with a DateTime object
  

Imports System
Imports System.Xml
Imports System.Xml.XPath

Public Class MainClass

    Public Shared Sub Main()
        Dim root As XElement = _ 
            <Root>
                <Child>child content</Child>
            </Root>
        
        Dim dt As DateTime = New DateTime(201010612300)
        root.ReplaceAll(dt)
        Console.WriteLine(root)
    End Sub
End Class

   
    
  
Related examples in the same category
1.Remove content from XElement
2.Remove from XElement
3.Remove the 4th Employee element.
4.XElement.RemoveAll Method removes nodes and attributes from this XElement.
5.XElement.RemoveAttributes removes the attributes of this XElement.
6.XElement.SetAttributeValue sets the value of an attribute, adds an attribute, or removes an attribute.
7.XElement.SetElementValue sets the value of a child element, adds a child element, or removes a child element.
8.Listen to Add, Remove events
9.Replace content from XElement
10.XElement.ReplaceAll replaces child nodes and attributes with the specified content.
11.ReplaceAll with an array of XElement objects
12.XElement.ReplaceAll(Object[]) replaces child nodes and attributes with the specified content.
13.XElement.ReplaceAttributes (Object) replaces the attributes with the specified content.
14.XElement.ReplaceAttributes (Object[]) replaces attributes with the specified content.
15.ReplaceAll with a string
16.ReplaceAll with a double
17.ReplaceAll with a string array
18.Update attribute for XElement
19.Update XElement
20.Adding XElement to XElement
21.Add 5 new green Fords to the incoming document
22.Add the new node to the bottom of the XML tree
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.