HtmlAgilityPack.HtmlWeb.CreateInstance C# (CSharp) Method

CreateInstance() public method

Creates an instance of the given type from the specified Internet resource.
public CreateInstance ( string url, Type type ) : object
url string The requested URL, such as "http://Myserver/Mypath/Myfile.asp".
type System.Type The requested type.
return object
        public object CreateInstance(string url, Type type)
        {
            return CreateInstance(url, null, null, type);
        }