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
- DataGridViewImageColumn.cs
- PropertyGeneratedEventArgs.cs
- FixedSOMFixedBlock.cs
- ComPersistableTypeElementCollection.cs
- clipboard.cs
- Helpers.cs
- GB18030Encoding.cs
- DiagnosticsConfigurationHandler.cs
- CommandConverter.cs
- Config.cs
- StylusLogic.cs
- NotificationContext.cs
- XmlSchemaAnyAttribute.cs
- DrawingContextDrawingContextWalker.cs
- XmlText.cs
- CheckBox.cs
- HttpResponseInternalBase.cs
- TextElementEnumerator.cs
- FixedFlowMap.cs
- Matrix3DStack.cs
- TimeoutValidationAttribute.cs
- EventToken.cs
- EncoderFallback.cs
- XmlSchemaAttribute.cs
- ReadContentAsBinaryHelper.cs
- TdsParserSessionPool.cs
- ObjectSecurity.cs
- DisplayClaim.cs
- ListControlBoundActionList.cs
- RSACryptoServiceProvider.cs
- IdleTimeoutMonitor.cs
- GridItemProviderWrapper.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- Table.cs
- RuleSetBrowserDialog.cs
- CompareValidator.cs
- IntAverageAggregationOperator.cs
- MultipartContentParser.cs
- ContextStaticAttribute.cs
- KnownTypesHelper.cs
- RootDesignerSerializerAttribute.cs
- ConfigPathUtility.cs
- SqlCacheDependencySection.cs
- MemberNameValidator.cs
- BindingWorker.cs
- GridViewSelectEventArgs.cs
- TextBlock.cs
- MessageLogTraceRecord.cs
- Stroke2.cs
- DiffuseMaterial.cs
- ServiceOperationInfoTypeConverter.cs
- HyperLinkField.cs
- TextServicesHost.cs
- StreamGeometry.cs
- ImageBrush.cs
- GradientStop.cs
- SelectedDatesCollection.cs
- AnnouncementInnerClientCD1.cs
- UdpMessageProperty.cs
- RSAPKCS1KeyExchangeFormatter.cs
- X509Utils.cs
- MethodImplAttribute.cs
- PathSegment.cs
- XmlSchemaInfo.cs
- AssemblyResourceLoader.cs
- CustomAttribute.cs
- Update.cs
- TemplateBindingExtension.cs
- SBCSCodePageEncoding.cs
- PackageDigitalSignature.cs
- EncryptedPackageFilter.cs
- VectorAnimation.cs
- XmlElementList.cs
- SessionParameter.cs
- AnimationClockResource.cs
- Avt.cs
- FilteredXmlReader.cs
- TrackingMemoryStream.cs
- BinHexDecoder.cs
- TheQuery.cs
- AllMembershipCondition.cs
- SinglePageViewer.cs
- SqlReorderer.cs
- UpdateExpressionVisitor.cs
- XmlReflectionImporter.cs
- ClientCredentialsSecurityTokenManager.cs
- Dispatcher.cs
- WebPartUserCapability.cs
- BoundPropertyEntry.cs
- ValidationSummary.cs
- ReachDocumentReferenceSerializerAsync.cs
- Schedule.cs
- MemberInfoSerializationHolder.cs
- WebPartUserCapability.cs
- RequestBringIntoViewEventArgs.cs
- Atom10FormatterFactory.cs
- ThemeDictionaryExtension.cs
- XmlWriterSettings.cs
- WebPermission.cs
- ResourceExpressionEditorSheet.cs