Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- DetailsViewDeleteEventArgs.cs
- XmlDataSource.cs
- DocumentPageView.cs
- WebServiceData.cs
- ConfigXmlDocument.cs
- Roles.cs
- EventMap.cs
- _ChunkParse.cs
- HtmlProps.cs
- ListItemCollection.cs
- LedgerEntry.cs
- StatusBarAutomationPeer.cs
- SchemaImporterExtensionElement.cs
- OdbcPermission.cs
- WindowsAuthenticationEventArgs.cs
- XamlHostingSectionGroup.cs
- BrowserCapabilitiesFactoryBase.cs
- ZipIOModeEnforcingStream.cs
- CompositeFontFamily.cs
- ConfigXmlText.cs
- StringFunctions.cs
- Ipv6Element.cs
- ToolboxItemFilterAttribute.cs
- GeneratedCodeAttribute.cs
- XmlDataLoader.cs
- KeyboardDevice.cs
- ListItemConverter.cs
- EventLogEntry.cs
- SystemColorTracker.cs
- BuildManagerHost.cs
- SchemaImporterExtensionElementCollection.cs
- FrameworkName.cs
- ImageList.cs
- MetadataConversionError.cs
- HMACSHA256.cs
- CommandLibraryHelper.cs
- SetStoryboardSpeedRatio.cs
- CodeNamespaceCollection.cs
- Metadata.cs
- SourceChangedEventArgs.cs
- TraversalRequest.cs
- CodeSubDirectoriesCollection.cs
- BitmapEffectGroup.cs
- OpCellTreeNode.cs
- Variable.cs
- AppDomainUnloadedException.cs
- Type.cs
- CustomExpression.cs
- DataGridViewButtonColumn.cs
- PropertyMap.cs
- AmbientValueAttribute.cs
- WebPartDisplayModeCollection.cs
- TileModeValidation.cs
- ColorTranslator.cs
- InertiaRotationBehavior.cs
- GraphicsState.cs
- EncoderReplacementFallback.cs
- CompilerCollection.cs
- GridViewRowPresenter.cs
- ToolBarTray.cs
- WindowsSysHeader.cs
- PlatformNotSupportedException.cs
- LicenseException.cs
- Regex.cs
- GenerateScriptTypeAttribute.cs
- WebUtil.cs
- CodeLinePragma.cs
- OleDbRowUpdatingEvent.cs
- SizeConverter.cs
- MimeWriter.cs
- XhtmlCssHandler.cs
- MultiPageTextView.cs
- ClientSettingsStore.cs
- MetabaseServerConfig.cs
- ControlBindingsCollection.cs
- EarlyBoundInfo.cs
- ApplicationDirectoryMembershipCondition.cs
- PrintingPermissionAttribute.cs
- XmlBoundElement.cs
- Localizer.cs
- Int32Rect.cs
- ObjectListFieldCollection.cs
- ConsumerConnectionPointCollection.cs
- Html32TextWriter.cs
- ResourceDescriptionAttribute.cs
- MeasurementDCInfo.cs
- DecoratedNameAttribute.cs
- SimpleHandlerBuildProvider.cs
- ListBoxItemAutomationPeer.cs
- BlockUIContainer.cs
- IntegerValidatorAttribute.cs
- DataSourceXmlSerializationAttribute.cs
- RegionData.cs
- LineGeometry.cs
- PenThreadWorker.cs
- WmlListAdapter.cs
- Int64.cs
- SignerInfo.cs
- Point3D.cs
- RotationValidation.cs