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
- ManagedCodeMarkers.cs
- IndexedGlyphRun.cs
- ControlHelper.cs
- RuleSettingsCollection.cs
- FixedSOMLineCollection.cs
- OdbcEnvironment.cs
- BooleanSwitch.cs
- Menu.cs
- InvalidProgramException.cs
- ClientRuntime.cs
- ProxyHelper.cs
- CqlGenerator.cs
- WorkflowRuntimeElement.cs
- SqlUserDefinedAggregateAttribute.cs
- DataServicePagingProviderWrapper.cs
- EntityStoreSchemaGenerator.cs
- TablePatternIdentifiers.cs
- EventWaitHandleSecurity.cs
- Int32Storage.cs
- XMLSchema.cs
- CryptoStream.cs
- XamlRtfConverter.cs
- AppDomainManager.cs
- DataGridCellEditEndingEventArgs.cs
- LogEntryDeserializer.cs
- DataTableNewRowEvent.cs
- Content.cs
- ReadOnlyMetadataCollection.cs
- EditorPartCollection.cs
- VoiceChangeEventArgs.cs
- SwitchLevelAttribute.cs
- AuthenticatedStream.cs
- HttpResponseWrapper.cs
- InfoCardConstants.cs
- TabRenderer.cs
- EntitySqlQueryState.cs
- RegexCapture.cs
- CheckBoxFlatAdapter.cs
- AnnotationResourceChangedEventArgs.cs
- ProjectedSlot.cs
- Helper.cs
- TextViewBase.cs
- PriorityQueue.cs
- DbParameterCollectionHelper.cs
- Baml2006ReaderContext.cs
- PropertyCondition.cs
- DataReceivedEventArgs.cs
- FuncTypeConverter.cs
- AppDomainUnloadedException.cs
- MissingFieldException.cs
- OpCodes.cs
- XmlWrappingWriter.cs
- TemplateField.cs
- ValidationErrorCollection.cs
- AnnotationHelper.cs
- Page.cs
- SafeSecurityHandles.cs
- DataTableNameHandler.cs
- MenuCommandsChangedEventArgs.cs
- SqlUserDefinedAggregateAttribute.cs
- ipaddressinformationcollection.cs
- XpsS0ValidatingLoader.cs
- FixedTextSelectionProcessor.cs
- AttributeSetAction.cs
- PageAsyncTaskManager.cs
- FileRecordSequenceCompletedAsyncResult.cs
- QilTernary.cs
- StartUpEventArgs.cs
- TabControlEvent.cs
- BaseComponentEditor.cs
- HttpWebRequestElement.cs
- SystemIPv6InterfaceProperties.cs
- JapaneseCalendar.cs
- datacache.cs
- CapabilitiesSection.cs
- AttributeCollection.cs
- MethodBody.cs
- MLangCodePageEncoding.cs
- ValidationPropertyAttribute.cs
- FormatConvertedBitmap.cs
- Thumb.cs
- BaseDataBoundControlDesigner.cs
- GeneratedCodeAttribute.cs
- StreamWithDictionary.cs
- TimeoutException.cs
- NoneExcludedImageIndexConverter.cs
- QueueAccessMode.cs
- ConfigurationStrings.cs
- XmlSignatureManifest.cs
- EntitySetDataBindingList.cs
- InkCanvasAutomationPeer.cs
- GeneralTransform2DTo3D.cs
- SystemDropShadowChrome.cs
- IgnoreSection.cs
- PtsHelper.cs
- PageSetupDialog.cs
- UriTemplatePathSegment.cs
- DocumentScope.cs
- CursorConverter.cs
- MenuAdapter.cs