Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Security / PassportAuthenticationEventArgs.cs / 1 / PassportAuthenticationEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * PassportAuthenticationEventArgs class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Security.Principal; using System.Security.Permissions; ////// The /// event argument passed to the PassportAuthentication_OnAuthenticate event by the /// PassportAuthentication module. /// Since there is already an identity at this point, this is useful mainly /// for attaching a custom IPrincipal object to the context using the supplied /// identity. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PassportAuthenticationEventArgs : EventArgs { private IPrincipal _User; private HttpContext _Context; private PassportIdentity _Identity; ////// IPrincipal /// object to be associated with the request. /// The user object should be attached to the context. If User is non null and Context.User is /// null, the PassportAuthenticationModule will initialize Context.User with /// PassportAuthenticationEventArgs.User. /// public IPrincipal User { get { return _User;} [SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)] set { _User = value; } } ////// The /// HttpContext intrinsic - most notably provides access to Request, Response, and /// User objects. /// public HttpContext Context { get { return _Context;}} ////// An authenticated Passport identity. /// public PassportIdentity Identity { get { return _Identity;}} ////// Constructor /// public PassportAuthenticationEventArgs(PassportIdentity identity, HttpContext context) { _Identity = identity; _Context = context; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * PassportAuthenticationEventArgs class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Security.Principal; using System.Security.Permissions; ////// The /// event argument passed to the PassportAuthentication_OnAuthenticate event by the /// PassportAuthentication module. /// Since there is already an identity at this point, this is useful mainly /// for attaching a custom IPrincipal object to the context using the supplied /// identity. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PassportAuthenticationEventArgs : EventArgs { private IPrincipal _User; private HttpContext _Context; private PassportIdentity _Identity; ////// IPrincipal /// object to be associated with the request. /// The user object should be attached to the context. If User is non null and Context.User is /// null, the PassportAuthenticationModule will initialize Context.User with /// PassportAuthenticationEventArgs.User. /// public IPrincipal User { get { return _User;} [SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)] set { _User = value; } } ////// The /// HttpContext intrinsic - most notably provides access to Request, Response, and /// User objects. /// public HttpContext Context { get { return _Context;}} ////// An authenticated Passport identity. /// public PassportIdentity Identity { get { return _Identity;}} ////// Constructor /// public PassportAuthenticationEventArgs(PassportIdentity identity, HttpContext context) { _Identity = identity; _Context = context; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CacheMemory.cs
- ShadowGlyph.cs
- FontCollection.cs
- DebugView.cs
- ComponentResourceManager.cs
- FindProgressChangedEventArgs.cs
- XamlFxTrace.cs
- CssStyleCollection.cs
- DetailsViewDeleteEventArgs.cs
- Select.cs
- AnnotationResourceChangedEventArgs.cs
- FormsAuthentication.cs
- IntegerValidator.cs
- DataKeyCollection.cs
- X509Certificate.cs
- Odbc32.cs
- ListBase.cs
- TypographyProperties.cs
- DataControlFieldCollection.cs
- CodeAttributeDeclaration.cs
- SplitterEvent.cs
- TableTextElementCollectionInternal.cs
- BrowserCapabilitiesFactoryBase.cs
- TableRow.cs
- RegexTree.cs
- MembershipSection.cs
- StylusButtonCollection.cs
- Help.cs
- CodeMethodInvokeExpression.cs
- BasicKeyConstraint.cs
- StatusStrip.cs
- GenericPrincipal.cs
- GregorianCalendarHelper.cs
- HttpResponseHeader.cs
- SmiTypedGetterSetter.cs
- Axis.cs
- ProcessModelSection.cs
- DrawingState.cs
- StringConcat.cs
- SHA256.cs
- HtmlTableCellCollection.cs
- EntityModelBuildProvider.cs
- SEHException.cs
- ObjectSpanRewriter.cs
- CacheAxisQuery.cs
- DesignerActionService.cs
- ProviderUtil.cs
- LOSFormatter.cs
- FullTextLine.cs
- DataBoundLiteralControl.cs
- HwndHost.cs
- AmbientLight.cs
- DESCryptoServiceProvider.cs
- ValidatorCompatibilityHelper.cs
- ExtendedProtectionPolicy.cs
- DesignerDataStoredProcedure.cs
- OledbConnectionStringbuilder.cs
- Validator.cs
- IERequestCache.cs
- PeerApplicationLaunchInfo.cs
- TextPatternIdentifiers.cs
- XmlReflectionImporter.cs
- RepeaterCommandEventArgs.cs
- ACE.cs
- TableLayoutPanelCellPosition.cs
- Constant.cs
- XmlIgnoreAttribute.cs
- TrackingMemoryStreamFactory.cs
- Model3D.cs
- CollectionExtensions.cs
- TableDetailsCollection.cs
- ProfileGroupSettingsCollection.cs
- RandomNumberGenerator.cs
- Sql8ConformanceChecker.cs
- TargetControlTypeAttribute.cs
- DragCompletedEventArgs.cs
- Slider.cs
- ThemeableAttribute.cs
- RegexMatch.cs
- ResourceReferenceKeyNotFoundException.cs
- TextBoxBase.cs
- SetterTriggerConditionValueConverter.cs
- BitmapEffectCollection.cs
- GridViewCellAutomationPeer.cs
- DataGridViewImageCell.cs
- WebContext.cs
- ProcessHostMapPath.cs
- Label.cs
- AppDomainGrammarProxy.cs
- OleStrCAMarshaler.cs
- ExceptionHandlersDesigner.cs
- ExecutionContext.cs
- SqlComparer.cs
- CustomPopupPlacement.cs
- ConfigurationLockCollection.cs
- SafePipeHandle.cs
- XmlUrlResolver.cs
- ModifiableIteratorCollection.cs
- DBNull.cs
- DbDataRecord.cs