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
- Button.cs
- XmlReflectionMember.cs
- AnchoredBlock.cs
- ColumnCollection.cs
- InvokeHandlers.cs
- AttributeAction.cs
- SrgsSemanticInterpretationTag.cs
- FileDialog_Vista.cs
- ExpandedWrapper.cs
- NetworkCredential.cs
- UIElement.cs
- ArgumentException.cs
- DynamicRendererThreadManager.cs
- DiffuseMaterial.cs
- Tokenizer.cs
- RoleGroup.cs
- ContainerVisual.cs
- TileBrush.cs
- FloaterParaClient.cs
- SecurityDescriptor.cs
- ClientSettingsStore.cs
- ItemChangedEventArgs.cs
- WindowAutomationPeer.cs
- DbConnectionOptions.cs
- InfoCardServiceInstallComponent.cs
- BindingSource.cs
- Calendar.cs
- HierarchicalDataBoundControlAdapter.cs
- ThrowHelper.cs
- DataViewListener.cs
- AxHost.cs
- BitmapMetadata.cs
- objectquery_tresulttype.cs
- ProviderConnectionPoint.cs
- MatrixTransform3D.cs
- VirtualStackFrame.cs
- Transform3D.cs
- XmlAttributeCache.cs
- HiddenFieldPageStatePersister.cs
- RenderContext.cs
- BaseAsyncResult.cs
- InkPresenter.cs
- Base64Encoder.cs
- PersonalizationProvider.cs
- TextDpi.cs
- XamlReaderHelper.cs
- RuleInfoComparer.cs
- ClrProviderManifest.cs
- SelfIssuedAuthProofToken.cs
- PersonalizationAdministration.cs
- contentDescriptor.cs
- SmtpException.cs
- LabelLiteral.cs
- CategoriesDocumentFormatter.cs
- BindToObject.cs
- RIPEMD160.cs
- PingReply.cs
- InputBuffer.cs
- ControlCommandSet.cs
- Base64Stream.cs
- ImportCatalogPart.cs
- ToolStripPanelCell.cs
- KeyPressEvent.cs
- WmlValidationSummaryAdapter.cs
- PointCollection.cs
- BamlTreeNode.cs
- ApplyImportsAction.cs
- List.cs
- XmlSchemaAnyAttribute.cs
- XappLauncher.cs
- MaterialCollection.cs
- InlineUIContainer.cs
- ColorConvertedBitmapExtension.cs
- CodeSubDirectoriesCollection.cs
- GifBitmapEncoder.cs
- updatecommandorderer.cs
- MetaTable.cs
- XmlAnyElementAttribute.cs
- EntityDataSourceSelectingEventArgs.cs
- Light.cs
- Helpers.cs
- DrawingCollection.cs
- FullTrustAssemblyCollection.cs
- GlobalProxySelection.cs
- FormsAuthenticationTicket.cs
- EntityViewContainer.cs
- PathFigureCollection.cs
- ObjectItemAttributeAssemblyLoader.cs
- Size3DConverter.cs
- MdImport.cs
- ConnectionStringEditor.cs
- SignedXml.cs
- Baml2006ReaderContext.cs
- ComponentConverter.cs
- TcpTransportSecurityElement.cs
- FunctionDescription.cs
- IsolatedStorageFilePermission.cs
- ToolboxComponentsCreatingEventArgs.cs
- PerformanceCounter.cs
- SpecialFolderEnumConverter.cs