1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * Copyright (c) 2003-2012 by AG-Software 											 *
3  * All Rights Reserved.																 *
4  * Contact information for AG-Software is available at http://www.ag-software.de	 *
5  *																					 *
6  * Licence:																			 *
7  * The agsXMPP SDK is released under a dual licence									 *
8  * agsXMPP can be used under either of two licences									 *
9  * 																					 *
10  * A commercial licence which is probably the most appropriate for commercial 		 *
11  * corporate use and closed source projects. 										 *
12  *																					 *
13  * The GNU Public License (GPL) is probably most appropriate for inclusion in		 *
14  * other open source projects.														 *
15  *																					 *
16  * See README.html for details.														 *
17  *																					 *
18  * For general enquiries visit our website at:										 *
19  * http://www.ag-software.de														 *
20  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
21 
22 using System;
23 
24 using agsXMPP.Xml.Dom;
25 
26 namespace agsXMPP.protocol.extensions.pubsub.@event
27 {
28 	public class Purge : Element
29     {
30         #region << Constructors >>
31         public Purge()
32         {
33             this.TagName    = "purge";
34             this.Namespace  = Uri.PUBSUB_EVENT;
35         }
36 
37         public Purge(string node) : this()
38         {
39             this.Node = node;
40         }
41         #endregion
42 
43         public string Node
44         {
45             get { return GetAttribute("node"); }
46             set { SetAttribute("node", value); }
47         }
48 	}
49 }