Headless.HtmlPageWrapper.HtmlPageWrapper C# (CSharp) Method

HtmlPageWrapper() public method

Initializes a new instance of the HtmlPageWrapper class.
/// The parameter is null. ///
public HtmlPageWrapper ( Uri targetLocation ) : System
targetLocation System.Uri /// The target location. ///
return System
        public HtmlPageWrapper(Uri targetLocation)
        {
            if (targetLocation == null)
            {
                throw new ArgumentNullException("targetLocation");
            }

            _targetLocation = targetLocation;
        }
HtmlPageWrapper