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

Indicates whether the client browser supports CDF.

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

Property Value

true if the browser client supports CDF; otherwise, false. Default value is false.

Example [Visual Basic]

[Visual Basic]

<%
' This example performs some action only if the client browser 
' supports CDF.
If Request.Browser.CDF = True Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace