Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SessionEndingCancelEventArgs.cs
- PrimitiveCodeDomSerializer.cs
- PassportAuthentication.cs
- Queue.cs
- IgnoreFileBuildProvider.cs
- OperatingSystem.cs
- XmlLinkedNode.cs
- LookupBindingPropertiesAttribute.cs
- CheckBoxBaseAdapter.cs
- AsyncPostBackTrigger.cs
- ConfigurationSectionHelper.cs
- StreamWriter.cs
- DataExpression.cs
- ZipFileInfoCollection.cs
- ObjectDataSourceView.cs
- _SSPIWrapper.cs
- GridViewRowEventArgs.cs
- CompoundFileDeflateTransform.cs
- Font.cs
- DataGridViewElement.cs
- Renderer.cs
- OverflowException.cs
- CommandConverter.cs
- PageWrapper.cs
- Decorator.cs
- MediaCommands.cs
- DictionaryBase.cs
- DocumentViewer.cs
- OperandQuery.cs
- DataColumnPropertyDescriptor.cs
- SecurityTokenResolver.cs
- FontConverter.cs
- OptimisticConcurrencyException.cs
- ProfileSettings.cs
- CharacterShapingProperties.cs
- DataGridDesigner.cs
- WebPartCloseVerb.cs
- MsmqIntegrationReceiveParameters.cs
- CompletionCallbackWrapper.cs
- PreservationFileWriter.cs
- QueryCacheManager.cs
- XmlLinkedNode.cs
- SettingsProperty.cs
- TextBox.cs
- InfoCardUIAgent.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- IndicShape.cs
- Int64.cs
- Window.cs
- StandardOleMarshalObject.cs
- PKCS1MaskGenerationMethod.cs
- TransactedReceiveScope.cs
- RangeValuePatternIdentifiers.cs
- Point3D.cs
- QueryLifecycle.cs
- SequenceDesigner.cs
- SerializationFieldInfo.cs
- WSSecurityPolicy.cs
- BoolExpressionVisitors.cs
- StandardOleMarshalObject.cs
- ListView.cs
- SendDesigner.xaml.cs
- ConnectionDemuxer.cs
- EpmContentSerializerBase.cs
- ProxyElement.cs
- BinaryFormatterSinks.cs
- NegationPusher.cs
- InternalBase.cs
- BlockCollection.cs
- sqlinternaltransaction.cs
- WsdlBuildProvider.cs
- XmlNamedNodeMap.cs
- SmiTypedGetterSetter.cs
- SessionChannels.cs
- DbModificationCommandTree.cs
- OverflowException.cs
- SessionEndingEventArgs.cs
- StorageScalarPropertyMapping.cs
- DataIdProcessor.cs
- PrintPreviewGraphics.cs
- HyperLink.cs
- FixedLineResult.cs
- GlyphRunDrawing.cs
- RewritingProcessor.cs
- CheckedPointers.cs
- Material.cs
- ExtendedPropertyInfo.cs
- TextCompositionEventArgs.cs
- HttpRequestWrapper.cs
- DataErrorValidationRule.cs
- Closure.cs
- ReadOnlyHierarchicalDataSource.cs
- Convert.cs
- TypedTableBaseExtensions.cs
- TextRenderingModeValidation.cs
- CollectionBase.cs
- WebBaseEventKeyComparer.cs
- CompositeDuplexElement.cs
- StrongNamePublicKeyBlob.cs