2004-04-24 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / Mono.Xml.Xsl / Attribute.cs
1 //
2 // Attribute.cs
3 //
4 // Authors:
5 //      Oleg Tkachenko (oleg@tkachenko.com)
6 //      
7 // (C) 2003 Oleg Tkachenko
8 //
9
10 using System;
11 using System.Xml;
12
13 namespace Mono.Xml.Xsl {      
14         /// <summary>
15         /// XML attribute.
16         /// </summary>
17         internal struct Attribute {
18                 public string Prefix;
19                 public string Namespace;
20                 public string LocalName;
21                 public string Value;
22             
23                 public Attribute (string prefix, string namespaceUri, string localName, string value)
24                 {
25                         this.Prefix = prefix;
26                         this.Namespace = namespaceUri;
27                         this.LocalName = localName;
28                         this.Value = value;
29                 }
30         }
31 }