Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Security / WindowsAuthenticationEventArgs.cs / 1 / WindowsAuthenticationEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * WindowsAuthenticationEventArgs class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Security.Principal; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WindowsAuthenticationEventArgs : EventArgs { private IPrincipal _User; private HttpContext _Context; private WindowsIdentity _Identity; ///The Windows authentication module raises this event. This /// is the event argument passed to the WindowsAuthentication_OnAuthenticate event. /// Contains a WindowsIdentity object and the IPrincipal object used for the context. ////// public IPrincipal User { get { return _User;} [SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)] set { _User = value; } } ///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 WindowsAuthenticationModule will initialize /// Context.User with WindowsAuthenticationEventArgs.User. ////// The HttpContext intrinsic (provides access to /// Request, Response, and User objects). /// public HttpContext Context { get { return _Context;}} ////// An authenticated Windows identity. /// public WindowsIdentity Identity { get { return _Identity;}} ////// public WindowsAuthenticationEventArgs(WindowsIdentity 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.Initializes a newly created instance of the /// WindowsAuthenticationEventArgs Class. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- mediaclock.cs
- EntryWrittenEventArgs.cs
- ToolStripDropTargetManager.cs
- XsdBuilder.cs
- StreamSecurityUpgradeProvider.cs
- MSAANativeProvider.cs
- SecurityAlgorithmSuiteConverter.cs
- SequenceNumber.cs
- OrderingInfo.cs
- DataServiceQueryException.cs
- SafePEFileHandle.cs
- BitmapEffectInput.cs
- ClientBuildManager.cs
- FixedDocument.cs
- CubicEase.cs
- FontStretch.cs
- EdmFunction.cs
- HScrollBar.cs
- ObjectQueryState.cs
- COM2PictureConverter.cs
- WebEncodingValidatorAttribute.cs
- CodeTypeReferenceExpression.cs
- XmlQueryCardinality.cs
- AppLevelCompilationSectionCache.cs
- SizeLimitedCache.cs
- HostedBindingBehavior.cs
- PackageRelationshipCollection.cs
- VerbConverter.cs
- Dictionary.cs
- LogLogRecordHeader.cs
- QilParameter.cs
- SelectorAutomationPeer.cs
- SelectionHighlightInfo.cs
- EntityCommandCompilationException.cs
- DescendantBaseQuery.cs
- ArithmeticException.cs
- ButtonColumn.cs
- ActivationArguments.cs
- ImageCodecInfo.cs
- WindowHelperService.cs
- GridViewRowPresenterBase.cs
- ExtensionDataObject.cs
- MachineKeyValidationConverter.cs
- KnownTypeAttribute.cs
- EditingContext.cs
- JsonSerializer.cs
- DecoderBestFitFallback.cs
- RepeatButton.cs
- AnnouncementClient.cs
- WindowsContainer.cs
- SecurityElementBase.cs
- CancellableEnumerable.cs
- Int32.cs
- GiveFeedbackEvent.cs
- Utils.cs
- XmlTextReader.cs
- ObjectComplexPropertyMapping.cs
- ProfileSettingsCollection.cs
- MobileFormsAuthentication.cs
- ToolStripItemDataObject.cs
- Material.cs
- EnumDataContract.cs
- TextLineBreak.cs
- DefaultObjectMappingItemCollection.cs
- CriticalFileToken.cs
- CfgParser.cs
- SingleKeyFrameCollection.cs
- SafeFileMapViewHandle.cs
- WebPartConnectionsEventArgs.cs
- DiscoveryDocumentSearchPattern.cs
- ChameleonKey.cs
- ResXResourceReader.cs
- TextEditorCharacters.cs
- AsymmetricAlgorithm.cs
- Effect.cs
- Select.cs
- SerialReceived.cs
- ReliabilityContractAttribute.cs
- BamlLocalizer.cs
- CodeDOMUtility.cs
- DecimalAnimationBase.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- DataTable.cs
- ComAdminWrapper.cs
- WorkflowDispatchContext.cs
- WebPartPersonalization.cs
- PrintDialog.cs
- ColorMap.cs
- DetailsViewUpdateEventArgs.cs
- TemplateField.cs
- ToolStripRenderer.cs
- DefaultMemberAttribute.cs
- InputBinder.cs
- WindowsToolbarAsMenu.cs
- ProgressBar.cs
- ResourceCategoryAttribute.cs
- InternalMappingException.cs
- oledbmetadatacolumnnames.cs
- ObjectRef.cs
- ProcessModelSection.cs