For this Example I have create one class with the name BrowserInfo which has the properties like BrowserName , BrowerVersion, Platform, ProductName, UserAgent of type string , IsCookiesEnabled of type Boolean to indicate whether Cookies are enabled or not , BrowserMinorVersion and BrowserMajorVersion are of type int.You can see the default constructor of the BrowserInfo class which is used to initialize all the properties of the class.
public BrowserInfo()
{
BrowserName = HtmlPage.BrowserInformation.Name;
BrowserVersion = HtmlPage.BrowserInformation.BrowserVersion.ToString();
BrowserMajorVersion = HtmlPage.BrowserInformation.BrowserVersion.Major;
BrowserMinorVersion = HtmlPage.BrowserInformation.BrowserVersion.Minor;
IsCookiesEnabled = HtmlPage.BrowserInformation.CookiesEnabled;
Platform = HtmlPage.BrowserInformation.Platform;
ProductName = HtmlPage.BrowserInformation.ProductName;
ProductVersion = HtmlPage.BrowserInformation.ProductVersion;
UserAgent = HtmlPage.BrowserInformation.UserAgent;
}
Read more: Asim Sajjad