Ejemplo n.º 1
0
 private void SetDOMImplementation(IDOMImplementation value)
 {
     if (FDOMImplementation == value)
     {
         return;
     }
     SetActive(false);
     FDOMImplementation = value;
 }
Ejemplo n.º 2
0
        private void CheckDOM()
        {
            if (FDOMImplementation == null)
            {
                switch (FDOMVendor ?? DefaultDOMVendor)
                {
                case TDOMVendor.MSXML: FDOMImplementation = new MSXMLImplementation(); break;

                default: throw new NotImplementedException();
                }
            }
        }
 internal static DocumentImpl Create(IDOMImplementation Implementation)
 {
     return(new DocumentImpl(Implementation));
 }
 /// <summary>
 /// DocumentImpl constructor.
 /// </summary>
 /// <param name="Implementation">WebKit IDOMImplementation object.</param>
 protected DocumentImpl(IDOMImplementation Implementation)
 {
     this.implementation = Implementation;
 }