static IHTMLLink InternalConstructor(string rel, string href, string type)
		{
			IHTMLLink n = new IHTMLLink();

			n.rel = rel;
			n.href = href;
			n.type = type;

			return n;
		}
Beispiel #2
0
        static IHTMLLink InternalConstructor(string rel, string href, string type)
        {
            IHTMLLink n = new IHTMLLink();

            n.rel  = rel;
            n.href = href;
            n.type = type;

            return(n);
        }