GaDotNet.Common.Data.GooglePageView.GooglePageView C# (CSharp) Method

GooglePageView() public method

Initializes a new instance of the GooglePageView class.
public GooglePageView ( string pageTitle, string domainName, string url ) : System
pageTitle string The page title. (required)
domainName string domain hostname ie www.yourdomain.com (required)
url string The URL. (required)
return System
        public GooglePageView(string pageTitle, string domainName, string url)
        {
            PageTitle = pageTitle;
            DomainName = domainName;
            Url = url;

            Validate();
        }