OSArch Property (.NET)

Type: String

OSArch returns information about the type of hardware architecture in use on the visitor's machine. Possible return values include "x86", "x86_64", "ppc", "powerpc", "i386", "mips", and "sparc".

 

Special notes for this property:

 

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

 

C# Example:

<%

ExtendedOptions options = new ExtendedOptions();

options.AddProperties("OSArch");

ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);

%>

<html>OSArch is:

<% if (extBrow.OSArch == "-1" || extBrow.OSArch == "-2")

Response.Write("Not detectable");

else

Response.Write(extBrow.OSArch);

%>

</html>

 

See Also:

Additional Steps Required for Java based properties

Detecting Operating System Details

OSArch Property (.NET)

OSName Property (.NET)

OSVersion Property (.NET)

Platform Property (.NET)