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
- RequestTimeoutManager.cs
- XmlTextAttribute.cs
- NavigationEventArgs.cs
- HideDisabledControlAdapter.cs
- TrackingAnnotationCollection.cs
- BCryptNative.cs
- DataQuery.cs
- RijndaelManaged.cs
- SqlRowUpdatingEvent.cs
- SqlDataRecord.cs
- TextTreeFixupNode.cs
- NativeMethods.cs
- CodeTypeConstructor.cs
- BindableTemplateBuilder.cs
- baseshape.cs
- SafeSystemMetrics.cs
- ApplyImportsAction.cs
- AnnotationAdorner.cs
- RichTextBox.cs
- CharStorage.cs
- HostedTcpTransportManager.cs
- HitTestWithGeometryDrawingContextWalker.cs
- AttachmentService.cs
- KeyToListMap.cs
- Util.cs
- Vector3DCollection.cs
- WebPartEditorApplyVerb.cs
- RenderDataDrawingContext.cs
- DataGridViewHeaderCell.cs
- QuinticEase.cs
- ClientTarget.cs
- SchemaManager.cs
- SemanticTag.cs
- ScrollEventArgs.cs
- CompatibleIComparer.cs
- ArrayTypeMismatchException.cs
- BindingsCollection.cs
- ResourceProviderFactory.cs
- AutomationEventArgs.cs
- XmlSchemaSimpleContentExtension.cs
- FormViewDeletedEventArgs.cs
- PipeStream.cs
- DesignerActionService.cs
- TreeNodeBindingDepthConverter.cs
- RepeatInfo.cs
- columnmapkeybuilder.cs
- XmlMembersMapping.cs
- Pen.cs
- AutomationPatternInfo.cs
- TerminateSequence.cs
- JsonDataContract.cs
- PagerSettings.cs
- ApplicationInfo.cs
- ByteStream.cs
- UnsafeNativeMethods.cs
- DataTableExtensions.cs
- TextUtf8RawTextWriter.cs
- FastPropertyAccessor.cs
- XPathBuilder.cs
- JavaScriptObjectDeserializer.cs
- SpellerHighlightLayer.cs
- ThicknessKeyFrameCollection.cs
- ExpressionTextBox.xaml.cs
- DragSelectionMessageFilter.cs
- HashLookup.cs
- FeatureSupport.cs
- VisualTreeHelper.cs
- SynchronizedRandom.cs
- XmlDomTextWriter.cs
- AmbientLight.cs
- FtpCachePolicyElement.cs
- ViewStateModeByIdAttribute.cs
- StaticTextPointer.cs
- HtmlEmptyTagControlBuilder.cs
- DiscoveryMessageSequenceCD1.cs
- _ScatterGatherBuffers.cs
- ListDictionaryInternal.cs
- TextContainerChangedEventArgs.cs
- Visitors.cs
- VisualBasicExpressionConverter.cs
- SqlTriggerAttribute.cs
- XsltContext.cs
- ListenerUnsafeNativeMethods.cs
- SqlRecordBuffer.cs
- ManagementObjectCollection.cs
- PagerSettings.cs
- QilXmlReader.cs
- SerializationUtilities.cs
- PropertyChangedEventArgs.cs
- DynamicValidatorEventArgs.cs
- ScrollChrome.cs
- StorageComplexTypeMapping.cs
- CacheEntry.cs
- XmlILStorageConverter.cs
- TypeSystem.cs
- GroupItem.cs
- SchemaImporter.cs
- ValidationResult.cs
- RectValueSerializer.cs
- ParameterCollection.cs