Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EntityContainerAssociationSet.cs
- AspNetCompatibilityRequirementsAttribute.cs
- FrameworkContentElement.cs
- CompilerWrapper.cs
- XmlDesignerDataSourceView.cs
- XmlHierarchyData.cs
- ProgressBarBrushConverter.cs
- StylusDownEventArgs.cs
- XmlILAnnotation.cs
- ToolStripMenuItem.cs
- EncryptedType.cs
- Socket.cs
- SymmetricSecurityBindingElement.cs
- ComplexPropertyEntry.cs
- WebMessageEncodingBindingElement.cs
- SetterBase.cs
- RequestUriProcessor.cs
- XPathParser.cs
- SchemaReference.cs
- XslCompiledTransform.cs
- XmlIgnoreAttribute.cs
- Size3D.cs
- PrintPreviewGraphics.cs
- XhtmlBasicTextBoxAdapter.cs
- TypeInformation.cs
- HyperLinkField.cs
- IdentityReference.cs
- HotSpotCollection.cs
- BackEase.cs
- DataGridRowHeader.cs
- HttpProcessUtility.cs
- SiteMapDataSource.cs
- XmlWrappingWriter.cs
- DesignerActionUIStateChangeEventArgs.cs
- CompilerCollection.cs
- NumericPagerField.cs
- GridViewColumnCollectionChangedEventArgs.cs
- DecimalStorage.cs
- GregorianCalendarHelper.cs
- DataTemplate.cs
- ErrorHandler.cs
- DataRowView.cs
- GeneratedView.cs
- Convert.cs
- TransactionInterop.cs
- ConsumerConnectionPoint.cs
- PageThemeParser.cs
- InternalTransaction.cs
- StackBuilderSink.cs
- panel.cs
- AttributeCollection.cs
- BindMarkupExtensionSerializer.cs
- NativeMethods.cs
- WizardStepBase.cs
- TextStore.cs
- EventLogPermission.cs
- SHA1CryptoServiceProvider.cs
- DrawingContextDrawingContextWalker.cs
- Rules.cs
- _ListenerAsyncResult.cs
- ListSortDescription.cs
- Header.cs
- UnmanagedBitmapWrapper.cs
- ClientBuildManagerCallback.cs
- PlatformNotSupportedException.cs
- ButtonFlatAdapter.cs
- QilList.cs
- CmsUtils.cs
- Inflater.cs
- BitmapEffect.cs
- List.cs
- WindowPatternIdentifiers.cs
- ParallelTimeline.cs
- WebPartHeaderCloseVerb.cs
- InstancePersistenceEvent.cs
- ValidationManager.cs
- EnumBuilder.cs
- EndpointConfigContainer.cs
- CapabilitiesSection.cs
- CodeDOMProvider.cs
- PropertyKey.cs
- FixedElement.cs
- SelectionListDesigner.cs
- KeyPressEvent.cs
- PartialTrustHelpers.cs
- PropertySegmentSerializationProvider.cs
- SymmetricKeyWrap.cs
- Rotation3DAnimation.cs
- WorkflowWebService.cs
- TypeConverterAttribute.cs
- ConfigDefinitionUpdates.cs
- sqlpipe.cs
- ServiceChannelFactory.cs
- ClrPerspective.cs
- DoubleAnimationUsingPath.cs
- XsdDuration.cs
- DbLambda.cs
- UnsafeNativeMethodsMilCoreApi.cs
- ErrorWebPart.cs
- Viewport3DVisual.cs