Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Profile / ProfileEventArgs.cs / 1 / 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. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MethodSet.cs
- WorkflowApplicationUnloadedException.cs
- ServiceBuildProvider.cs
- CodeTypeReferenceSerializer.cs
- webbrowsersite.cs
- XmlUtil.cs
- EditorZone.cs
- ChineseLunisolarCalendar.cs
- Sql8ExpressionRewriter.cs
- DesignTable.cs
- SqlDesignerDataSourceView.cs
- AsymmetricAlgorithm.cs
- GacUtil.cs
- WmpBitmapEncoder.cs
- EntityUtil.cs
- XNodeNavigator.cs
- WindowsComboBox.cs
- WinFormsComponentEditor.cs
- TextPenaltyModule.cs
- OdbcConnectionOpen.cs
- FeatureSupport.cs
- BindableTemplateBuilder.cs
- DesignTimeParseData.cs
- UrlPropertyAttribute.cs
- WSAddressing10ProblemHeaderQNameFault.cs
- FormatSettings.cs
- StatusBar.cs
- WindowsListView.cs
- HostSecurityManager.cs
- OutputWindow.cs
- SafeHandles.cs
- precedingsibling.cs
- Debugger.cs
- HandlerBase.cs
- UpdateEventArgs.cs
- GeneralTransform3D.cs
- Parameter.cs
- DynamicActionMessageFilter.cs
- SyndicationDeserializer.cs
- ObjectHandle.cs
- HistoryEventArgs.cs
- UIPermission.cs
- ToolboxItemFilterAttribute.cs
- RegexInterpreter.cs
- FloatUtil.cs
- TraceData.cs
- CompositionTarget.cs
- XamlSerializerUtil.cs
- UrlAuthFailureHandler.cs
- ImpersonationContext.cs
- SafeNativeMethods.cs
- WSSecurityPolicy12.cs
- WhiteSpaceTrimStringConverter.cs
- CodeCatchClause.cs
- TreeNodeEventArgs.cs
- SafeSecurityHandles.cs
- LeaseManager.cs
- KeyedPriorityQueue.cs
- X509RecipientCertificateClientElement.cs
- ImageMap.cs
- CategoryGridEntry.cs
- OdbcDataReader.cs
- AdapterDictionary.cs
- DesignerForm.cs
- IgnoreDataMemberAttribute.cs
- TypeValidationEventArgs.cs
- ConnectionPoint.cs
- Attachment.cs
- Italic.cs
- _NTAuthentication.cs
- ReadOnlyDictionary.cs
- DataGridViewMethods.cs
- SHA256Cng.cs
- TreeNodeClickEventArgs.cs
- CryptographicAttribute.cs
- RewritingPass.cs
- PathNode.cs
- TraceLevelStore.cs
- XmlAttributeCollection.cs
- X509CertificateCollection.cs
- DataListCommandEventArgs.cs
- Vector3D.cs
- TypedDataSourceCodeGenerator.cs
- AlphaSortedEnumConverter.cs
- WSHttpBindingCollectionElement.cs
- FontWeights.cs
- DocumentGridContextMenu.cs
- WpfWebRequestHelper.cs
- WizardSideBarListControlItemEventArgs.cs
- HWStack.cs
- AsyncPostBackTrigger.cs
- MostlySingletonList.cs
- Constants.cs
- TextTreeDeleteContentUndoUnit.cs
- StylusCaptureWithinProperty.cs
- QilDataSource.cs
- CanonicalizationDriver.cs
- TemplateEditingService.cs
- RedistVersionInfo.cs
- WriteFileContext.cs