System.Xml.Xsl.XsltOld.NamespaceEvent.NamespaceEvent C# (CSharp) Method

NamespaceEvent() public method

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