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
- HopperCache.cs
- StringResourceManager.cs
- ProjectionCamera.cs
- TemplateContent.cs
- UnknownBitmapEncoder.cs
- LinearKeyFrames.cs
- AutoCompleteStringCollection.cs
- EntityDataSourceReferenceGroup.cs
- TextDataBindingHandler.cs
- AvtEvent.cs
- MediaTimeline.cs
- ErrorEventArgs.cs
- Version.cs
- TcpHostedTransportConfiguration.cs
- SocketAddress.cs
- CatalogPart.cs
- IDReferencePropertyAttribute.cs
- WithParamAction.cs
- UIElementParaClient.cs
- ListItemConverter.cs
- CellParagraph.cs
- IDQuery.cs
- InvalidFilterCriteriaException.cs
- DataMemberFieldEditor.cs
- ContentControl.cs
- ProviderManager.cs
- RequestCache.cs
- TextReader.cs
- WizardPanelChangingEventArgs.cs
- ThemeableAttribute.cs
- SessionPageStatePersister.cs
- BordersPage.cs
- SqlSelectClauseBuilder.cs
- XmlSerializerOperationFormatter.cs
- Grid.cs
- XmlSchemaImporter.cs
- ActivityWithResultConverter.cs
- ThumbAutomationPeer.cs
- PageAsyncTaskManager.cs
- WindowsTokenRoleProvider.cs
- ToolStripGripRenderEventArgs.cs
- ArrayList.cs
- RequestQueue.cs
- Win32PrintDialog.cs
- DataGridParentRows.cs
- WebPartEditorOkVerb.cs
- RelationshipConstraintValidator.cs
- HttpListenerResponse.cs
- NominalTypeEliminator.cs
- HatchBrush.cs
- Model3DCollection.cs
- CheckPair.cs
- Table.cs
- TimeIntervalCollection.cs
- ContainerUtilities.cs
- SchemaTableOptionalColumn.cs
- IfAction.cs
- SEHException.cs
- SqlFunctionAttribute.cs
- SystemResourceKey.cs
- ReferenceSchema.cs
- ProfileProvider.cs
- StringOutput.cs
- OrderedHashRepartitionStream.cs
- DataException.cs
- RSAPKCS1KeyExchangeFormatter.cs
- UInt64.cs
- ItemsPresenter.cs
- LinkLabel.cs
- IndexOutOfRangeException.cs
- Literal.cs
- ping.cs
- ResourceSet.cs
- ContentOperations.cs
- EditorZoneBase.cs
- IndividualDeviceConfig.cs
- COM2IDispatchConverter.cs
- CategoryList.cs
- UnSafeCharBuffer.cs
- PassportAuthentication.cs
- SimpleTableProvider.cs
- GridProviderWrapper.cs
- UriSection.cs
- SubMenuStyleCollection.cs
- MonitorWrapper.cs
- SystemInformation.cs
- _LazyAsyncResult.cs
- hresults.cs
- translator.cs
- BaseValidator.cs
- ReadOnlyDataSourceView.cs
- HtmlTableCell.cs
- OdbcConnectionPoolProviderInfo.cs
- Utils.cs
- EtwTrace.cs
- RepeatBehavior.cs
- ExceptionNotification.cs
- WebPartHelpVerb.cs
- SafeUserTokenHandle.cs
- DesignRelationCollection.cs