2.2.3 BrowserType

The BrowserType enumeration enables the protocol client to specify the capabilities of its browser.

 namespace Microsoft.HtmlTrans
 {
     enum BrowerType : Int32
     {
         BT_IE3        = 0,
         BT_IE4        = 1,
         BT_UNKNOWN    = 2
     }
 }

BT_IE3: The application name and version of the browser as specified by the user-agent string is set to one of the following values in application name/version format. For example: "Mozilla/1", "Mozilla/2", or "Mozilla/3".

BT_IE4: The application name and version of the browser as specified by the user-agent string is set to the following value in application name/version format: For example: "Mozilla/4".

BT_UNKNOWN: The application name and version of the browser as specified by the user-agent string is a value other than those specified by the BT_IE3 or BT_IE4 values.