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.Beta

Indicates whether the browser client is in beta.

[Visual Basic]
Overridable Public ReadOnly Property Beta As Boolean
[C#]
public bool Beta {virtual get;}
[C++]
public: __property virtual bool get_Beta();
[JScript]
public function get Beta() : Boolean;

Property Value

true if the browser client is a beta version; otherwise, false. Default value is false.

Example [Visual Basic]

[Visual Basic]

<%
' This example performs some action only if the client browser
' is a beta version.
If Request.Browser.Beta = True Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace