Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ProxyWebPartManager.cs
- NetSectionGroup.cs
- RadioButtonBaseAdapter.cs
- _Win32.cs
- EntityCommandExecutionException.cs
- ToolStripSplitButton.cs
- webbrowsersite.cs
- ManipulationLogic.cs
- ConstNode.cs
- EntityDataSourceWizardForm.cs
- CheckBox.cs
- ConstrainedDataObject.cs
- COM2Enum.cs
- XmlSchemaValidationException.cs
- DoubleAnimationUsingPath.cs
- SettingsSection.cs
- ServerValidateEventArgs.cs
- SqlGenerator.cs
- ThousandthOfEmRealDoubles.cs
- DataGridViewLinkCell.cs
- TemplateInstanceAttribute.cs
- ChildDocumentBlock.cs
- SoapServerProtocol.cs
- AsymmetricAlgorithm.cs
- WebPartConnectionsCancelVerb.cs
- HyperLinkStyle.cs
- HandlerFactoryCache.cs
- SerialPinChanges.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- BrowserDefinition.cs
- TemplatedEditableDesignerRegion.cs
- OdbcInfoMessageEvent.cs
- TextEncodedRawTextWriter.cs
- DispatcherOperation.cs
- SafeNativeMethods.cs
- EmptyQuery.cs
- DataObjectFieldAttribute.cs
- HtmlSelectionListAdapter.cs
- FontInfo.cs
- StorageBasedPackageProperties.cs
- ConnectionsZone.cs
- GenerateScriptTypeAttribute.cs
- SourceFilter.cs
- SiteMapDataSourceView.cs
- PageBreakRecord.cs
- CharUnicodeInfo.cs
- DependsOnAttribute.cs
- BaseCollection.cs
- HttpsChannelFactory.cs
- Point.cs
- ListDictionaryInternal.cs
- PixelFormat.cs
- SortQuery.cs
- SqlProviderServices.cs
- ExpressionBuilder.cs
- MetadataUtilsSmi.cs
- XPathException.cs
- PixelFormats.cs
- WebZone.cs
- LazyTextWriterCreator.cs
- Metafile.cs
- LinqDataSourceDeleteEventArgs.cs
- GridViewHeaderRowPresenter.cs
- ResourcePermissionBase.cs
- PolygonHotSpot.cs
- MemberPath.cs
- ViewPort3D.cs
- EnumCodeDomSerializer.cs
- PatternMatcher.cs
- SystemColors.cs
- ResourceContainer.cs
- TypefaceMap.cs
- OrderingQueryOperator.cs
- CompilationRelaxations.cs
- BrushMappingModeValidation.cs
- EpmContentDeSerializer.cs
- TrustLevel.cs
- QuadraticBezierSegment.cs
- RectangleGeometry.cs
- PasswordBox.cs
- HotCommands.cs
- ListViewPagedDataSource.cs
- DataFieldCollectionEditor.cs
- RIPEMD160.cs
- EntityDataSourceWrapperCollection.cs
- QueryRewriter.cs
- EntityDataSourceMemberPath.cs
- CaseCqlBlock.cs
- ThemeDictionaryExtension.cs
- WebPartConnectionsCancelEventArgs.cs
- Pair.cs
- SecurityTokenResolver.cs
- NameValuePermission.cs
- WebAdminConfigurationHelper.cs
- CommandValueSerializer.cs
- PathParser.cs
- TableSectionStyle.cs
- GeneratedContractType.cs
- ConfigXmlCDataSection.cs
- AsyncResult.cs