System.Xml.Xsl.XsltOld.NamespaceEvent.NamespaceEvent C# (CSharp) 메소드

NamespaceEvent() 공개 메소드

public NamespaceEvent ( NavigatorInput input ) : System
input NavigatorInput
리턴 System
        public NamespaceEvent(NavigatorInput input) {
            Debug.Assert(input != null);
            Debug.Assert(input.NodeType == XPathNodeType.Namespace);
            this.namespaceUri = input.Value;
            this.name         = input.LocalName;
        }