| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- //
- // XmlRootAttribute.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlRootAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
- AttributeTargets.Enum | AttributeTargets.Interface |
- AttributeTargets.ReturnValue)]
- public class XmlRootAttribute : Attribute
- {
- private string dataType;
- private string elementName;
- private bool isNullable;
- private string ns;
- public XmlRootAttribute ()
- {
-
- }
- public XmlRootAttribute (string elementName)
- {
- ElementName = elementName;
- }
- public string DataType
- {
- get {
- return dataType;
- }
- set {
- dataType = value;
- }
- }
- public string ElementName
- {
- get {
- return elementName;
- }
- set {
- elementName = value;
- }
- }
- public bool IsNullable
- {
- get {
- return isNullable;
- }
- set {
- isNullable = value;
- }
- }
- public string Namespace
- {
- get {
- return ns;
- }
- set {
- ns = value;
- }
- }
-
- internal void AddKeyHash (System.Text.StringBuilder sb)
- {
- sb.Append ("XRA ");
- KeyHelper.AddField (sb, 1, ns);
- KeyHelper.AddField (sb, 2, elementName);
- KeyHelper.AddField (sb, 3, dataType);
- KeyHelper.AddField (sb, 4, isNullable);
- sb.Append ('|');
- }
- }
- }
|