AngleSharp.Html.InputTypes.FileInputType.FileInputType C# (CSharp) Method

FileInputType() public method

public FileInputType ( IHtmlInputElement input, String name ) : AngleSharp.Html.Dom
input IHtmlInputElement
name String
return AngleSharp.Html.Dom
        public FileInputType(IHtmlInputElement input, String name)
            : base(input, name, validate: true)
        {
            _files = new FileList();
        }