Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / AuthenticateEventArgs.cs / 1 / AuthenticateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class AuthenticateEventArgs : EventArgs { private bool _authenticated; public AuthenticateEventArgs() : this(false) { } public AuthenticateEventArgs(bool authenticated) { _authenticated = authenticated; } ////// Gets or sets the success of the authentication attempt. Would be set by /// custom authentication logic in the Login.Authenticate event handler. /// public bool Authenticated { get { return _authenticated; } set { _authenticated = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ButtonRenderer.cs
- XmlToDatasetMap.cs
- Single.cs
- COM2AboutBoxPropertyDescriptor.cs
- CharacterHit.cs
- GridSplitterAutomationPeer.cs
- ObjectItemCollection.cs
- ToolStripScrollButton.cs
- ObfuscateAssemblyAttribute.cs
- CollectionChangeEventArgs.cs
- ExpandCollapseProviderWrapper.cs
- JavaScriptSerializer.cs
- ListenDesigner.cs
- DataGridViewRowsRemovedEventArgs.cs
- ThreadAttributes.cs
- ProfileService.cs
- ErrorWrapper.cs
- Converter.cs
- TemplatedControlDesigner.cs
- ThicknessAnimationBase.cs
- OperandQuery.cs
- HttpCookie.cs
- WCFBuildProvider.cs
- Propagator.cs
- StrongNameUtility.cs
- DynamicAttribute.cs
- TypeValidationEventArgs.cs
- HtmlTableRowCollection.cs
- DefinitionBase.cs
- Internal.cs
- _FtpControlStream.cs
- SrgsElementFactoryCompiler.cs
- StyleXamlParser.cs
- ValidatorCompatibilityHelper.cs
- AssemblyCache.cs
- DiscriminatorMap.cs
- DataPagerCommandEventArgs.cs
- HashCryptoHandle.cs
- TraceLog.cs
- EncoderNLS.cs
- DeobfuscatingStream.cs
- SchemaTableColumn.cs
- MulticastOption.cs
- PartitionResolver.cs
- SHA1.cs
- PeerTransportSecurityElement.cs
- SecurityContextCookieSerializer.cs
- PrintPreviewDialog.cs
- SmtpFailedRecipientsException.cs
- ManagementClass.cs
- TableLayout.cs
- AsymmetricAlgorithm.cs
- NavigatingCancelEventArgs.cs
- RangeBaseAutomationPeer.cs
- SkewTransform.cs
- XmlAnyElementAttributes.cs
- ListDictionary.cs
- SchemaImporterExtensionsSection.cs
- TogglePattern.cs
- EdmPropertyAttribute.cs
- ListViewGroupCollectionEditor.cs
- ChangeConflicts.cs
- FileCodeGroup.cs
- UriTemplateCompoundPathSegment.cs
- IResourceProvider.cs
- OrderedDictionary.cs
- ProfileModule.cs
- CreatingCookieEventArgs.cs
- PropertyMetadata.cs
- ResourceDisplayNameAttribute.cs
- GridViewColumnCollectionChangedEventArgs.cs
- WebZone.cs
- XPathParser.cs
- ListViewInsertEventArgs.cs
- MeshGeometry3D.cs
- UnsafeNativeMethods.cs
- StrongNameKeyPair.cs
- PointF.cs
- SpecialNameAttribute.cs
- CheckableControlBaseAdapter.cs
- CannotUnloadAppDomainException.cs
- QueryStringParameter.cs
- EntitySetBase.cs
- Point3D.cs
- QueryCreatedEventArgs.cs
- EmptyArray.cs
- ExtenderProvidedPropertyAttribute.cs
- objectresult_tresulttype.cs
- WindowsGraphicsWrapper.cs
- ClientSession.cs
- DockPatternIdentifiers.cs
- UpdatePanel.cs
- WebPartAuthorizationEventArgs.cs
- GroupAggregateExpr.cs
- XmlILStorageConverter.cs
- ProcessModelSection.cs
- AuthenticationService.cs
- ConnectionPoolManager.cs
- InternalUserCancelledException.cs
- PropertyRecord.cs