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
- DESCryptoServiceProvider.cs
- hresults.cs
- ConfigViewGenerator.cs
- SqlSelectStatement.cs
- SafeCertificateContext.cs
- ListDataBindEventArgs.cs
- Math.cs
- XPathDocument.cs
- ContractTypeNameElement.cs
- PointLightBase.cs
- DeferredReference.cs
- TextServicesCompartment.cs
- ExpressionTextBox.xaml.cs
- MappingModelBuildProvider.cs
- MapPathBasedVirtualPathProvider.cs
- DiagnosticsConfiguration.cs
- TreeNodeSelectionProcessor.cs
- SQLGuid.cs
- PolicyException.cs
- ClientScriptManager.cs
- FrameworkEventSource.cs
- SafeHandle.cs
- PolyLineSegment.cs
- TerminatorSinks.cs
- WindowsStatusBar.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- COM2PropertyDescriptor.cs
- UrlMappingCollection.cs
- UdpChannelListener.cs
- ZipIOCentralDirectoryBlock.cs
- SmtpDigestAuthenticationModule.cs
- CodeNamespaceImport.cs
- ThousandthOfEmRealDoubles.cs
- Tokenizer.cs
- TableLayoutPanelCodeDomSerializer.cs
- PriorityBinding.cs
- Size.cs
- RectConverter.cs
- QueryFunctions.cs
- UriTemplateTable.cs
- TrimSurroundingWhitespaceAttribute.cs
- SafeHandle.cs
- MethodCallConverter.cs
- CollectionAdapters.cs
- DbParameterHelper.cs
- ExcludePathInfo.cs
- Path.cs
- DetailsViewActionList.cs
- DocumentSequenceHighlightLayer.cs
- StorageComplexPropertyMapping.cs
- SwitchLevelAttribute.cs
- HashAlgorithm.cs
- WebServiceData.cs
- ProviderBase.cs
- SqlConnectionFactory.cs
- XpsDocument.cs
- LineBreak.cs
- TableParaClient.cs
- RegistryDataKey.cs
- ThreadStaticAttribute.cs
- TextTreeTextElementNode.cs
- CustomBindingElement.cs
- PartBasedPackageProperties.cs
- TerminatorSinks.cs
- X509Certificate2.cs
- Underline.cs
- TickBar.cs
- LoginUtil.cs
- BuildProvidersCompiler.cs
- Screen.cs
- Point4DConverter.cs
- CommonServiceBehaviorElement.cs
- ActivationArguments.cs
- FileSecurity.cs
- SymLanguageType.cs
- WsiProfilesElementCollection.cs
- DPCustomTypeDescriptor.cs
- ContentFileHelper.cs
- String.cs
- SingleStorage.cs
- SecurityContext.cs
- MsmqUri.cs
- ObjectTag.cs
- elementinformation.cs
- DataColumnMappingCollection.cs
- BitmapMetadataEnumerator.cs
- VariableQuery.cs
- shaperfactoryquerycacheentry.cs
- TriggerActionCollection.cs
- TextTreeUndoUnit.cs
- WebSysDefaultValueAttribute.cs
- SQLDecimal.cs
- HttpCacheVary.cs
- ObjectToken.cs
- EntitySqlQueryState.cs
- TraceHandlerErrorFormatter.cs
- EndPoint.cs
- DataComponentNameHandler.cs
- KeyValueConfigurationElement.cs
- CategoryGridEntry.cs