public static bool _ctor_System_Xml_XmlParserContext_System_Xml_XmlNameTable_System_Xml_XmlNamespaceManager_System_String_System_Xml_XmlSpace_System_Text_Encoding( )
        {
            //Parameters
            System.Xml.XmlNameTable        nt    = null;
            System.Xml.XmlNamespaceManager nsMgr = null;
            System.String        xmlLang         = null;
            System.Xml.XmlSpace  xmlSpace        = null;
            System.Text.Encoding enc             = null;


            //Exception
            Exception exception_Real        = null;
            Exception exception_Intercepted = null;

            InterceptionMaintenance.disableInterception( );

            try
            {
                returnValue_Real = System.Xml.XmlParserContext.ctor(nt, nsMgr, xmlLang, xmlSpace, enc);
            }

            catch (Exception e)
            {
                exception_Real = e;
            }


            InterceptionMaintenance.enableInterception( );

            try
            {
                returnValue_Intercepted = System.Xml.XmlParserContext.ctor(nt, nsMgr, xmlLang, xmlSpace, enc);
            }

            catch (Exception e)
            {
                exception_Intercepted = e;
            }
        }
 public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc)
 {
     this._docTypeName = string.Empty;
     this._pubId = string.Empty;
     this._sysId = string.Empty;
     this._internalSubset = string.Empty;
     this._xmlLang = string.Empty;
     this._baseURI = string.Empty;
     if (nsMgr != null)
     {
         if (nt == null)
         {
             this._nt = nsMgr.NameTable;
         }
         else
         {
             if (nt != nsMgr.NameTable)
             {
                 throw new XmlException("Xml_NotSameNametable", string.Empty);
             }
             this._nt = nt;
         }
     }
     else
     {
         this._nt = nt;
     }
     this._nsMgr = nsMgr;
     this._docTypeName = (docTypeName == null) ? string.Empty : docTypeName;
     this._pubId = (pubId == null) ? string.Empty : pubId;
     this._sysId = (sysId == null) ? string.Empty : sysId;
     this._internalSubset = (internalSubset == null) ? string.Empty : internalSubset;
     this._baseURI = (baseURI == null) ? string.Empty : baseURI;
     this._xmlLang = (xmlLang == null) ? string.Empty : xmlLang;
     this._xmlSpace = xmlSpace;
     this._encoding = enc;
 }
示例#3
0
 public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc)
 {
     this._docTypeName    = string.Empty;
     this._pubId          = string.Empty;
     this._sysId          = string.Empty;
     this._internalSubset = string.Empty;
     this._xmlLang        = string.Empty;
     this._baseURI        = string.Empty;
     if (nsMgr != null)
     {
         if (nt == null)
         {
             this._nt = nsMgr.NameTable;
         }
         else
         {
             if (nt != nsMgr.NameTable)
             {
                 throw new XmlException("Xml_NotSameNametable", string.Empty);
             }
             this._nt = nt;
         }
     }
     else
     {
         this._nt = nt;
     }
     this._nsMgr          = nsMgr;
     this._docTypeName    = (docTypeName == null) ? string.Empty : docTypeName;
     this._pubId          = (pubId == null) ? string.Empty : pubId;
     this._sysId          = (sysId == null) ? string.Empty : sysId;
     this._internalSubset = (internalSubset == null) ? string.Empty : internalSubset;
     this._baseURI        = (baseURI == null) ? string.Empty : baseURI;
     this._xmlLang        = (xmlLang == null) ? string.Empty : xmlLang;
     this._xmlSpace       = xmlSpace;
     this._encoding       = enc;
 }
示例#4
0
 public XPathDocument(System.Xml.XmlReader reader, System.Xml.XmlSpace space)
 {
 }
示例#5
0
 public XPathDocument(string uri, System.Xml.XmlSpace space)
 {
 }
        public System.Xml.XPath.XPathNavigator CreateNavigator(int nodeQuota, System.Xml.XmlSpace space)
        {
            Contract.Ensures(Contract.Result <System.Xml.XPath.XPathNavigator>() != null);

            return(default(System.Xml.XPath.XPathNavigator));
        }
示例#7
0
 public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc)
 {
 }
示例#8
0
 public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc)
 {
 }
 public void ExitScope()
 {
     while (this.nsCount > 0)
     {
         Namespace namespace2 = this.namespaces[this.nsCount - 1];
         if (namespace2.Depth != this.depth)
         {
             break;
         }
         if (this.lastNameSpace == namespace2)
         {
             this.lastNameSpace = null;
         }
         namespace2.Clear();
         this.nsCount--;
     }
     while (this.attributeCount > 0)
     {
         XmlAttribute attribute = this.attributes[this.attributeCount - 1];
         if (attribute.Depth != this.depth)
         {
             break;
         }
         this.space = attribute.XmlSpace;
         this.lang = attribute.XmlLang;
         attribute.Clear();
         this.attributeCount--;
     }
     this.depth--;
 }
 public void Clear()
 {
     if (this.namespaces == null)
     {
         this.namespaces = new Namespace[4];
         this.namespaces[0] = this.defaultNamespace;
     }
     this.nsCount = 1;
     this.nsTop = 0;
     this.depth = 0;
     this.attributeCount = 0;
     this.space = System.Xml.XmlSpace.None;
     this.lang = null;
     this.lastNameSpace = null;
     this.namespaceBoundary = 0;
 }
 public void AddSpaceAttribute(System.Xml.XmlSpace space)
 {
     this.AddAttribute();
     this.space = space;
 }
示例#12
0
 public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace) : this(nt, nsMgr, docTypeName, pubId, sysId, internalSubset, baseURI, xmlLang, xmlSpace, null)
 {
 }
示例#13
0
 public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc) : this(nt, nsMgr, null, null, null, null, string.Empty, xmlLang, xmlSpace, enc)
 {
 }
示例#14
0
 public XPathDocument(string uri, System.Xml.XmlSpace space) => throw null;
示例#15
0
 public XPathDocument([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string uri, System.Xml.XmlSpace space)
 {
 }