Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- /* * 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaComplexContentRestriction.cs
- LoginView.cs
- IgnoreSection.cs
- DetailsViewRow.cs
- RSAPKCS1SignatureDeformatter.cs
- HostSecurityManager.cs
- Win32PrintDialog.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- SocketAddress.cs
- TaskFactory.cs
- SqlCacheDependencyDatabaseCollection.cs
- DropShadowEffect.cs
- PartitionedDataSource.cs
- ColumnTypeConverter.cs
- ColumnHeaderConverter.cs
- SerialPort.cs
- Axis.cs
- Matrix3DValueSerializer.cs
- MonthCalendar.cs
- EntityDataSourceMemberPath.cs
- ExpressionConverter.cs
- PartialList.cs
- FilePrompt.cs
- PaperSource.cs
- DbProviderFactory.cs
- ParagraphResult.cs
- ReflectionServiceProvider.cs
- Privilege.cs
- GeneralTransformGroup.cs
- ExpressionBinding.cs
- NativeMethods.cs
- Marshal.cs
- FileSecurity.cs
- SystemIPGlobalStatistics.cs
- DataRow.cs
- Page.cs
- SystemWebExtensionsSectionGroup.cs
- TextAction.cs
- Asn1Utilities.cs
- __TransparentProxy.cs
- IList.cs
- CopyOfAction.cs
- XPathException.cs
- Group.cs
- Matrix.cs
- ReturnEventArgs.cs
- StringResourceManager.cs
- Object.cs
- DateTimeFormatInfoScanner.cs
- SecurityRequiresReviewAttribute.cs
- QueryResponse.cs
- FontResourceCache.cs
- DeploymentSectionCache.cs
- PriorityRange.cs
- TableProviderWrapper.cs
- KeyPressEvent.cs
- SqlDataSourceCache.cs
- RemoteX509AsymmetricSecurityKey.cs
- ParsedAttributeCollection.cs
- KeyConstraint.cs
- _SslSessionsCache.cs
- SafeSecurityHandles.cs
- PrintDialog.cs
- StandardOleMarshalObject.cs
- BreakRecordTable.cs
- ApplicationException.cs
- FileVersionInfo.cs
- ButtonRenderer.cs
- ISSmlParser.cs
- _ServiceNameStore.cs
- XmlLanguage.cs
- ImageMapEventArgs.cs
- BitmapEffectState.cs
- CompositionAdorner.cs
- SessionStateContainer.cs
- InsufficientMemoryException.cs
- Pen.cs
- LineInfo.cs
- ChangePassword.cs
- DefaultHttpHandler.cs
- ObjectDataSourceStatusEventArgs.cs
- ProfileInfo.cs
- TemplateBaseAction.cs
- ExpressionBuilderContext.cs
- Win32Native.cs
- Processor.cs
- PerformanceCounterPermissionEntry.cs
- SemaphoreSecurity.cs
- CodeMemberEvent.cs
- BuildProvider.cs
- PageClientProxyGenerator.cs
- XmlCodeExporter.cs
- IndexedString.cs
- LinkLabel.cs
- CommandManager.cs
- SafeMILHandle.cs
- IntSecurity.cs
- Scheduler.cs
- Quad.cs
- XmlAttributeProperties.cs