File: FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNotation.cs
Web Access
Project: src\src\dotnet-svcutil\lib\src\dotnet-svcutil-lib.csproj (dotnet-svcutil-lib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.Xml
{
    using System;
    using System.Diagnostics;
 
    // Contains a notation declared in the DTD or schema.
    public class XmlNotation : XmlNode
    {
        private String _publicId;
        private String _systemId;
        private String _name;
 
        internal XmlNotation(String name, String publicId, String systemId, XmlDocument doc) : base(doc)
        {
            _name = doc.NameTable.Add(name);
            _publicId = publicId;
            _systemId = systemId;
        }
 
        // Gets the name of the node.
        public override string Name
        {
            get { return _name; }
        }
 
        // Gets the name of the current node without the namespace prefix.
        public override string LocalName
        {
            get { return _name; }
        }
 
        // Gets the type of the current node.
        public override XmlNodeType NodeType
        {
            get { return XmlNodeType.Notation; }
        }
 
        // Throws an InvalidOperationException since Notation can not be cloned.
        public override XmlNode CloneNode(bool deep)
        {
            throw new InvalidOperationException(ResXml.Xdom_Node_Cloning);
        }
 
        //
        // Microsoft extensions
        //
 
        // Gets a value indicating whether the node is read-only.
        public override bool IsReadOnly
        {
            get
            {
                return true;        // Make notations readonly
            }
        }
 
        // Gets the value of the public identifier on the notation declaration.
        public String PublicId
        {
            get { return _publicId; }
        }
 
        // Gets the value of
        // the system identifier on the notation declaration.
        public String SystemId
        {
            get { return _systemId; }
        }
 
        // Without override these two functions, we can't guarantee that WriteTo()/WriteContent() functions will never be called
        public override String OuterXml
        {
            get { return String.Empty; }
        }
 
        public override String InnerXml
        {
            get { return String.Empty; }
            set { throw new InvalidOperationException(ResXml.Xdom_Set_InnerXml); }
        }
 
        // Saves the node to the specified XmlWriter.
        public override void WriteTo(XmlWriter w)
        {
        }
 
        // Saves all the children of the node to the specified XmlWriter.
        public override void WriteContentTo(XmlWriter w)
        {
        }
    }
}