XObject.Changing Event : XObject « 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 » XObject 




XObject.Changing Event
 


Imports System
Imports System.Xml
Imports System.Xml.Schema
Module Module1
    WithEvents root As XElement = <Root>content</Root>

    Sub Main()
        root.Add(<Child>child</Child>)
    End Sub

    Private Sub root_Changing_
            ByVal sender As Object, _
            ByVal e As XObjectChangeEventArgs_
            Handles root.Changing
        Dim xSender As XElement = CType(sender, XElement)
        Console.WriteLine("Changing event raised")
        Console.WriteLine("  Sender: {0}", xSender.Name)
        Console.WriteLine("  ObjectChange: {0}", e.ObjectChange)
    End Sub

    Private Sub root_Changed_
            ByVal sender As Object, _
            ByVal e As XObjectChangeEventArgs_
            Handles root.Changed
        Dim xSender As XElement = CType(sender, XElement)
        Console.WriteLine("Changed event raised")
        Console.WriteLine("  Sender: {0}", xSender.Name)
        Console.WriteLine("  ObjectChange: {0}", e.ObjectChange)
    End Sub
End Module

   
  














Related examples in the same category
1.XObject.AddAnnotation adds an object to the annotation list of this XObject.
2.XObject.Annotation gets the first annotation object of the specified type from this XObject.
3.XObject.Annotation(T) gets the first annotation object of the specified type from this XObject.
4.XObject.Annotations gets a collection of annotations of the specified type for this XObject.
5.XObject.Annotations(T) gets a collection of annotations of the specified type for this XObject.
6.XObject.BaseUri Property gets the base URI for this XObject.
7.XObject.Changed Event raised when this XObject or any of its descendants have changed.
8.XObject.RemoveAnnotations (Type) removes the annotations of the specified type from this XObject.
9.XObject.RemoveAnnotations(T) removes the annotations of the specified type from this XObject.
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.