Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Profile / ProfileEventArgs.cs / 1305376 / ProfileEventArgs.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* ProfileEventArgs class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Profile {
using System.Web.Security;
using System.Security.Principal;
using System.Security.Permissions;
///
/// The
/// event argument passed to the Profiles_OnAuthenticate event. Contains a FormsIdentity object and the
/// IPrincipal object used for the context.
///
public sealed class ProfileEventArgs : EventArgs {
private HttpContext _Context;
///
/// This is the HttpContext intrinsic - most
/// notably provides access to Request, Response, and User objects.
///
public HttpContext Context { get { return _Context;}}
public ProfileBase Profile { get { return _Profile; } set { _Profile = value; } }
private ProfileBase _Profile;
///
/// Constructor
///
public ProfileEventArgs(HttpContext context) {
_Context = context;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BrowserDefinition.cs
- DirectionalLight.cs
- ImageListStreamer.cs
- WebPartMinimizeVerb.cs
- X509ChainPolicy.cs
- Lock.cs
- StreamGeometry.cs
- FontEmbeddingManager.cs
- CompiledELinqQueryState.cs
- SoapIgnoreAttribute.cs
- NameTable.cs
- EventListener.cs
- DataGridViewTopLeftHeaderCell.cs
- ClientRuntimeConfig.cs
- BaseCodePageEncoding.cs
- SR.cs
- ScriptResourceInfo.cs
- RequestDescription.cs
- Stroke2.cs
- Expression.cs
- KernelTypeValidation.cs
- DispatcherOperation.cs
- DataPointer.cs
- ContainerUIElement3D.cs
- Size3D.cs
- XmlDictionaryString.cs
- RegistrationServices.cs
- ExpressionPrefixAttribute.cs
- HttpRawResponse.cs
- ComponentChangingEvent.cs
- StringToken.cs
- EntitySet.cs
- XmlDocument.cs
- ReturnType.cs
- Win32Exception.cs
- CommentGlyph.cs
- ButtonBase.cs
- EtwProvider.cs
- ColumnResult.cs
- Pkcs9Attribute.cs
- UpdatePanelTriggerCollection.cs
- sortedlist.cs
- ElementAction.cs
- SpellerError.cs
- Utilities.cs
- RegistryPermission.cs
- GridItemPatternIdentifiers.cs
- Int64AnimationUsingKeyFrames.cs
- SignerInfo.cs
- DiscardableAttribute.cs
- RealizationDrawingContextWalker.cs
- HighlightOverlayGlyph.cs
- CodeExpressionStatement.cs
- HtmlToClrEventProxy.cs
- Point4DValueSerializer.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- TreeSet.cs
- StatusBarPanel.cs
- IPGlobalProperties.cs
- ConstraintEnumerator.cs
- Transform3D.cs
- SByteStorage.cs
- SystemIcmpV4Statistics.cs
- BadImageFormatException.cs
- BaseTemplateParser.cs
- ThicknessAnimation.cs
- WebPartConnectionsDisconnectVerb.cs
- HelloOperation11AsyncResult.cs
- SubMenuStyle.cs
- SqlErrorCollection.cs
- SqlNotificationRequest.cs
- StrokeNodeData.cs
- DelegateSerializationHolder.cs
- ApplicationInfo.cs
- ToolboxItem.cs
- CompleteWizardStep.cs
- __Error.cs
- Form.cs
- EmitterCache.cs
- TdsParser.cs
- AnonymousIdentificationSection.cs
- RoleGroup.cs
- VarInfo.cs
- AutomationPropertyInfo.cs
- FontCacheUtil.cs
- SponsorHelper.cs
- UiaCoreApi.cs
- TemplateNameScope.cs
- SchemaImporter.cs
- SqlCacheDependencyDatabaseCollection.cs
- XamlSerializerUtil.cs
- WebDisplayNameAttribute.cs
- PerformanceCounter.cs
- HtmlInputControl.cs
- ValidationException.cs
- ParameterToken.cs
- ApplyImportsAction.cs
- FindSimilarActivitiesVerb.cs
- RegularExpressionValidator.cs
- FixedDocumentPaginator.cs