Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / AuthenticateEventArgs.cs / 1305376 / AuthenticateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Utility.cs
- CachedTypeface.cs
- StylusPoint.cs
- Matrix.cs
- CapabilitiesUse.cs
- OdbcHandle.cs
- ClientEndpointLoader.cs
- WebPartDeleteVerb.cs
- DataServiceQueryOfT.cs
- SvcMapFileSerializer.cs
- XmlEventCache.cs
- BitmapEffect.cs
- PolyQuadraticBezierSegment.cs
- RankException.cs
- PasswordRecoveryDesigner.cs
- Decorator.cs
- DesignerSerializerAttribute.cs
- ProxyHelper.cs
- ControllableStoryboardAction.cs
- MergeEnumerator.cs
- ISessionStateStore.cs
- KeyInfo.cs
- SafeFileMapViewHandle.cs
- DictionaryEntry.cs
- DbProviderFactories.cs
- SaveFileDialogDesigner.cs
- SwitchElementsCollection.cs
- MasterPageParser.cs
- SqlExpander.cs
- TTSEngineProxy.cs
- PageVisual.cs
- updatecommandorderer.cs
- StylusShape.cs
- DockPatternIdentifiers.cs
- cookiecollection.cs
- CompletionProxy.cs
- COM2PictureConverter.cs
- NumberEdit.cs
- Mappings.cs
- IProvider.cs
- GridLengthConverter.cs
- DataBindingExpressionBuilder.cs
- XmlSchemaAny.cs
- InputProviderSite.cs
- ProgressPage.cs
- QilFactory.cs
- SchemaNamespaceManager.cs
- FixedSOMGroup.cs
- DataGridSortCommandEventArgs.cs
- XmlAggregates.cs
- ControllableStoryboardAction.cs
- DataRowExtensions.cs
- StaticResourceExtension.cs
- MergeFailedEvent.cs
- DataBoundLiteralControl.cs
- Mouse.cs
- Thread.cs
- DynamicDocumentPaginator.cs
- Evaluator.cs
- TimeSpanOrInfiniteValidator.cs
- ContainerUIElement3D.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- AutomationPatternInfo.cs
- InvokeGenerator.cs
- EncodingConverter.cs
- ErrorProvider.cs
- XmlSchemaParticle.cs
- XmlStreamNodeWriter.cs
- SemaphoreFullException.cs
- Misc.cs
- AssociationTypeEmitter.cs
- NonParentingControl.cs
- TemplateInstanceAttribute.cs
- RectangleHotSpot.cs
- ImageMap.cs
- FailedToStartupUIException.cs
- WebPartZone.cs
- OpacityConverter.cs
- XamlHostingSectionGroup.cs
- SoapConverter.cs
- AssemblySettingAttributes.cs
- CompositeCollectionView.cs
- ObjectDataSourceSelectingEventArgs.cs
- COM2ExtendedUITypeEditor.cs
- DataGridParentRows.cs
- XmlDocument.cs
- PrintPreviewControl.cs
- SessionStateItemCollection.cs
- PageHandlerFactory.cs
- QilPatternFactory.cs
- Metadata.cs
- RunWorkerCompletedEventArgs.cs
- Select.cs
- CodeSnippetTypeMember.cs
- BamlRecordHelper.cs
- MenuCommand.cs
- MD5CryptoServiceProvider.cs
- Process.cs
- DataBindingHandlerAttribute.cs
- EncodingInfo.cs