BrowserPlatformClass property: Request class

Description

Use this property to return a string value that represents the platform class (win, ios, mac, or android) that has been associated with the user agent as defined in the web server's configuration files.

This property is read-only.

Important:

Use this property within fluid applications only.

Example

/* iPhone only to disable field zooming on focus */
If %Request.BrowserDeviceFormFactor = 0 And
      %Request.BrowserPlatformClass = "ios" Then
   &str = "width=device-width,initial-scale=1.0,minimum-scale=1.0,user-scalable=no";
End-If;