NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpBrowserCapabilities.Platform

Returns the platform's name; for example, "Win32".

[Visual Basic]
Overridable Public ReadOnly Property Platform As String
[C#]
public string Platform {virtual get;}
[C++]
public: __property virtual String* get_Platform();
[JScript]
public function get Platform() : String;

Example [Visual Basic]

[Visual Basic]

<%
' This example performs some action only if the client browser is 
' running on a Windows NT platform.
If Request.Browser.Platform = "WinNT" Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace