BrowserBitSize Property (.NET)

 

Type: Integer

 

This property returns the bit size of the browser, such as 32 or 64. Use this to determine whether a user on a 64 bit operating system is running a 32 bit versus 64 bit version of their browser.

 

Special Installation Step

When BrowserHawk cannot determine the browser bit size from the user agent string, it will use Java to do so. Therefore you must follow the Additional Steps Required for Java Based Properties steps to make sure the Java applet used for this testing is in the right location.

 

Note: Use of this property requires the Enterprise Edition of BrowserHawk.

 

C# Example:

<%

ExtendedOptions options = new ExtendedOptions();

options.AddProperties("BrowserBitSize");

ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);

%>

<html>OSBitSize is: <% Response.Write(extBrow.BrowserBitSize);  %>

</html>

 

 

Special notes for this property:

 

See Also:

OSBitSize Property (.NET)

Additional Steps Required for Java Based Properties