User Guide

Chapter 2: ColdFusion Functions 279
AuthenticatedContext
Returns the name of the security context.
See also IsAuthenticated, AuthenticatedUser, IsAuthorized, and CFAUTHENTICATE.
Syntax AuthenticatedContext()
Examples <!--- This snippet shows how to use AuthenticatedContext --->
<HTML>
<HEAD>
<TITLE>
AuthenticatedContext Example
</TITLE>
</HEAD>
<BODY BGCOLOR=silver>
<H3>AuthenticatedContext Example</H3>
<P>Secure context is: <CFOUTPUT>AuthenticatedContext()</CFOUTPUT></P>
.
.
.
<HTML>
<HEAD>