Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // 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
- HtmlShimManager.cs
- ContractSearchPattern.cs
- TableCell.cs
- SiteMapNodeCollection.cs
- RegexCode.cs
- NavigationExpr.cs
- ReadOnlyKeyedCollection.cs
- MessageAction.cs
- EntityCommandExecutionException.cs
- ReferenceEqualityComparer.cs
- ToolStripPanelRow.cs
- ContextActivityUtils.cs
- TextUtf8RawTextWriter.cs
- BaseDataBoundControl.cs
- SymLanguageVendor.cs
- NumberAction.cs
- DebuggerAttributes.cs
- PartialArray.cs
- BuildResult.cs
- InternalDuplexBindingElement.cs
- HttpModuleCollection.cs
- CommonDialog.cs
- CmsInterop.cs
- VBCodeProvider.cs
- _ConnectStream.cs
- UnsafeNativeMethods.cs
- WindowsBrush.cs
- MailHeaderInfo.cs
- CapabilitiesPattern.cs
- WithParamAction.cs
- CompilationLock.cs
- basemetadatamappingvisitor.cs
- XamlHttpHandlerFactory.cs
- SpellerInterop.cs
- BuildProviderAppliesToAttribute.cs
- sqlinternaltransaction.cs
- ViewStateException.cs
- EmptyArray.cs
- WebControl.cs
- DataGridTextColumn.cs
- ValidateNames.cs
- BaseTemplateParser.cs
- ListViewGroupConverter.cs
- VisualStateChangedEventArgs.cs
- TransactionContextManager.cs
- RecordsAffectedEventArgs.cs
- StandardBindingReliableSessionElement.cs
- LambdaCompiler.Lambda.cs
- CodeDirectiveCollection.cs
- PersistenceProviderElement.cs
- ModelItemCollection.cs
- SamlAudienceRestrictionCondition.cs
- CharacterHit.cs
- CompiledQuery.cs
- ChangeConflicts.cs
- EncryptedKeyIdentifierClause.cs
- PermissionToken.cs
- DataGridViewCheckBoxCell.cs
- XmlSchemaInfo.cs
- ScriptingSectionGroup.cs
- ImageListUtils.cs
- ValueType.cs
- Publisher.cs
- SoapIncludeAttribute.cs
- VectorCollection.cs
- SynchronizedDispatch.cs
- IdentityElement.cs
- ClientSponsor.cs
- JapaneseCalendar.cs
- WaitHandle.cs
- TrackingServices.cs
- RadialGradientBrush.cs
- SrgsItemList.cs
- PriorityBinding.cs
- Listbox.cs
- AppSettingsReader.cs
- DocumentViewer.cs
- FixedPage.cs
- OleServicesContext.cs
- EncryptedHeader.cs
- MouseCaptureWithinProperty.cs
- SqlCommandBuilder.cs
- ResourceReader.cs
- DecoratedNameAttribute.cs
- CompiledQuery.cs
- safex509handles.cs
- PropertyDescriptorComparer.cs
- RequiredAttributeAttribute.cs
- ZipFileInfoCollection.cs
- XmlSchemaSimpleContent.cs
- DrawingContextWalker.cs
- Parameter.cs
- RoutedCommand.cs
- ProxyHelper.cs
- GeneralTransformGroup.cs
- VariableAction.cs
- WebServiceReceive.cs
- ParserExtension.cs
- WebHttpSecurity.cs
- TextProperties.cs