public Wrapper2(nsIDOMHTMLCollection collection)
 {
     _collection = collection;
     _length     = (int)collection.GetLengthAttribute();
 }
 public GeckoNodeEnumerator(nsIDOMHTMLCollection collection, Func <TGeckoNode, TWrapper> translator)
     : this(new Wrapper2(collection), translator)
 {
 }
 internal GeckoHtmlElementCollection(nsIDOMHTMLCollection col) : base(null)
 {
     this.Collection = col;
 }
 public DomHtmlCollection(nsIDOMHTMLCollection collection, Func <TGeckoNode, TWrapper> translator)
 {
     _collection = collection;
     _translator = translator;
 }
		internal GeckoHtmlElementCollection(nsIDOMHTMLCollection col) : base(null)
		{
			this.Collection = col;
		}
Example #6
0
		public static nsIDOMHTMLCollection GetProxy (Mono.WebBrowser.IWebBrowser control, nsIDOMHTMLCollection obj)
		{
			object o = Base.GetProxyForObject (control, typeof(nsIDOMHTMLCollection).GUID, obj);
			return o as nsIDOMHTMLCollection;
		}
Example #7
0
        public static nsIDOMHTMLCollection GetProxy(Mono.WebBrowser.IWebBrowser control, nsIDOMHTMLCollection obj)
        {
            object o = Base.GetProxyForObject(control, typeof(nsIDOMHTMLCollection).GUID, obj);

            return(o as nsIDOMHTMLCollection);
        }