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
- CompiledQuery.cs
- TextDecoration.cs
- EntityDataSourceStatementEditor.cs
- ApplicationSettingsBase.cs
- HMACMD5.cs
- FixedSOMGroup.cs
- MoveSizeWinEventHandler.cs
- TextEndOfParagraph.cs
- RelationshipEntry.cs
- DataGridViewCellStyleConverter.cs
- EntityDataSourceChangingEventArgs.cs
- GeometryCombineModeValidation.cs
- HttpInputStream.cs
- DNS.cs
- BrowserDefinition.cs
- FileRecordSequenceCompletedAsyncResult.cs
- Module.cs
- IdleTimeoutMonitor.cs
- Queue.cs
- StringValidator.cs
- Registry.cs
- WindowsUpDown.cs
- PtsCache.cs
- ObjectDataSourceEventArgs.cs
- SourceSwitch.cs
- AssociationProvider.cs
- SoapEnumAttribute.cs
- StyleConverter.cs
- ArrayElementGridEntry.cs
- TextWriter.cs
- GenerateHelper.cs
- SerialErrors.cs
- OracleConnectionString.cs
- _RequestCacheProtocol.cs
- ResolvedKeyFrameEntry.cs
- GetIsBrowserClientRequest.cs
- ObjectCloneHelper.cs
- HitTestParameters3D.cs
- Privilege.cs
- CodeAttributeArgumentCollection.cs
- HtmlInputSubmit.cs
- InputManager.cs
- OutputCacheProviderCollection.cs
- InsufficientMemoryException.cs
- RegexStringValidator.cs
- ConfigurationPropertyCollection.cs
- ObjectFullSpanRewriter.cs
- TextDecorationCollectionConverter.cs
- TextEditorCopyPaste.cs
- XmlAttribute.cs
- TreeBuilderBamlTranslator.cs
- BinaryObjectInfo.cs
- BindingMemberInfo.cs
- PerformanceCounterPermissionEntry.cs
- TreeIterator.cs
- WebPartEditVerb.cs
- TreeWalker.cs
- Int64Storage.cs
- DataPager.cs
- PropertyIDSet.cs
- mactripleDES.cs
- IntSecurity.cs
- CharacterMetricsDictionary.cs
- XmlSignatureProperties.cs
- _AutoWebProxyScriptEngine.cs
- _DomainName.cs
- ClrPerspective.cs
- UnknownBitmapEncoder.cs
- XPathArrayIterator.cs
- XmlLinkedNode.cs
- ResourceType.cs
- FontCollection.cs
- WsatAdminException.cs
- DispatcherProcessingDisabled.cs
- SqlConnectionStringBuilder.cs
- ListenerElementsCollection.cs
- NumberFunctions.cs
- HandleCollector.cs
- UntrustedRecipientException.cs
- CodePageUtils.cs
- NullRuntimeConfig.cs
- SchemaCollectionPreprocessor.cs
- ManagedIStream.cs
- FileUtil.cs
- SHA1Cng.cs
- ConfigDefinitionUpdates.cs
- NativeMethods.cs
- MobileComponentEditorPage.cs
- AddressHeader.cs
- ProviderMetadataCachedInformation.cs
- HttpResponseInternalWrapper.cs
- WebBrowser.cs
- RightsManagementInformation.cs
- IInstanceTable.cs
- BamlLocalizabilityResolver.cs
- ActivityMarkupSerializer.cs
- MenuItem.cs
- TrustManagerMoreInformation.cs
- CodeSnippetCompileUnit.cs
- WebConfigurationFileMap.cs