| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //
- // System.Xml.XmlProcessingInstruction
- //
- // Author:
- // Kral Ferch <[email protected]>
- //
- // (C) 2002 Kral Ferch
- //
- using System;
- namespace System.Xml
- {
- public class XmlProcessingInstruction : XmlLinkedNode
- {
- string target;
- string data;
- #region Constructors
- protected internal XmlProcessingInstruction(string target, string data, XmlDocument doc) : base(doc)
- {
- this.target = target;
- this.data = data;
- }
- #endregion
- #region Properties
- public string Data
- {
- get {
- return data;
- }
- set {
- data = value;
- }
- }
- public override string LocalName
- {
- get {
- return target;
- }
- }
- public override string Name
- {
- get {
- return target;
- }
- }
- public override XmlNodeType NodeType
- {
- get {
- return XmlNodeType.ProcessingInstruction;
- }
- }
-
- public string Target
- {
- get {
- return target;
- }
- }
- public override string Value
- {
- get {
- return data;
- }
- }
- #endregion
- #region Methods
- public override XmlNode CloneNode(bool deep)
- {
- return new XmlProcessingInstruction(target, data, OwnerDocument);
- }
- [MonoTODO]
- public override void WriteContentTo(XmlWriter w)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void WriteTo(XmlWriter w)
- {
- throw new NotImplementedException ();
- }
- #endregion
- }
- }
|