System.Xml.Xsl.XsltOld.ReaderOutput.LookupNamespace C# (CSharp) Method

LookupNamespace() public method

public LookupNamespace ( string prefix ) : string
prefix string
return string
        public override string LookupNamespace(string prefix) {
            prefix = this.nameTable.Get(prefix);

            if (this.manager != null && prefix != null) {
                return this.manager.ResolveNamespace(prefix);
            }
            return null;
        }