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
- CheckBox.cs
- HtmlButton.cs
- TextLineBreak.cs
- SQLDateTimeStorage.cs
- ArgIterator.cs
- ThrowHelper.cs
- ImpersonationContext.cs
- QueueProcessor.cs
- SqlUserDefinedAggregateAttribute.cs
- LogLogRecordHeader.cs
- listitem.cs
- ValidationError.cs
- HtmlObjectListAdapter.cs
- ElementMarkupObject.cs
- ViewStateException.cs
- HtmlInputControl.cs
- WindowsButton.cs
- Queue.cs
- NativeMethods.cs
- FixedSOMTextRun.cs
- SQLCharsStorage.cs
- brushes.cs
- _FixedSizeReader.cs
- SafeReadContext.cs
- AmbiguousMatchException.cs
- ExpressionBuilder.cs
- ADConnectionHelper.cs
- QilLoop.cs
- PhysicalOps.cs
- PathData.cs
- SessionIDManager.cs
- ViewCellRelation.cs
- SafeFileMappingHandle.cs
- AxHost.cs
- StaticTextPointer.cs
- Material.cs
- CodeMemberProperty.cs
- TransactionsSectionGroup.cs
- IndentedWriter.cs
- BaseCollection.cs
- TaskHelper.cs
- BufferBuilder.cs
- FusionWrap.cs
- ExtensionWindow.cs
- Run.cs
- StringTraceRecord.cs
- ToolStripSettings.cs
- MSAANativeProvider.cs
- IncrementalCompileAnalyzer.cs
- NameValueCollection.cs
- CrossAppDomainChannel.cs
- WebPartCollection.cs
- System.Data.OracleClient_BID.cs
- InfoCardRequestException.cs
- ProfileEventArgs.cs
- MtomMessageEncodingBindingElement.cs
- InplaceBitmapMetadataWriter.cs
- GridViewUpdateEventArgs.cs
- ForceCopyBuildProvider.cs
- latinshape.cs
- Int16KeyFrameCollection.cs
- LogArchiveSnapshot.cs
- JsonDeserializer.cs
- ServiceBuildProvider.cs
- OleDbRowUpdatingEvent.cs
- rsa.cs
- ContractUtils.cs
- UpdateProgress.cs
- ConfigurationManagerInternalFactory.cs
- StylusOverProperty.cs
- TextRangeAdaptor.cs
- InlinedAggregationOperatorEnumerator.cs
- DBParameter.cs
- AppSettingsExpressionBuilder.cs
- ServiceObjectContainer.cs
- CalendarDay.cs
- SqlBuffer.cs
- ArrayItemReference.cs
- ParentUndoUnit.cs
- ToolStripSystemRenderer.cs
- XmlSchemaSimpleTypeRestriction.cs
- TextBreakpoint.cs
- DbException.cs
- Not.cs
- Quad.cs
- CompiledQueryCacheEntry.cs
- SoapTypeAttribute.cs
- DataControlLinkButton.cs
- XmlSchemaSimpleTypeUnion.cs
- Matrix3DConverter.cs
- DomainConstraint.cs
- ObjectConverter.cs
- storepermission.cs
- GridViewEditEventArgs.cs
- ToolStripGrip.cs
- DataFormats.cs
- PreservationFileWriter.cs
- HtmlInputReset.cs
- AssociationSetEnd.cs
- XmlTextReaderImplHelpers.cs