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!

HttpRequest.IsAuthenticated

Gets a value that indicates whether the HTTP connection is authenticated.

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

Property Value

true if connection is authenticated; otherwise false.

Example

[Visual Basic]
<%-- This example receives a Boolean value containing the
IsAuthenticated property into the variable bAuthenticated --%>
<%
Dim bAuthenticated
bAuthenticated = Request.IsAuthenticated
%>

See Also

HttpRequest Class | HttpRequest Members | System.Web Namespace