Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Security / MembershipValidatePasswordEventArgs.cs / 1 / MembershipValidatePasswordEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * ValidatePasswordEventArgs class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ValidatePasswordEventArgs : EventArgs { private string _userName; private string _password; private bool _isNewUser; private bool _cancel; private Exception _failureInformation; public ValidatePasswordEventArgs( string userName, string password, bool isNewUser ) { _userName = userName; _password = password; _isNewUser = isNewUser; _cancel = false; } public string UserName { get{ return _userName; } } public string Password { get{ return _password; } } public bool IsNewUser { get{ return _isNewUser; } } public bool Cancel { get{ return _cancel; } set{ _cancel = value; } } public Exception FailureInformation { get{ return _failureInformation; } set{ _failureInformation = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TableAutomationPeer.cs
- DictionaryCustomTypeDescriptor.cs
- BinaryObjectInfo.cs
- Range.cs
- ScrollViewer.cs
- WeakRefEnumerator.cs
- ModelItemExtensions.cs
- InstancePersistenceException.cs
- FormViewRow.cs
- SystemBrushes.cs
- IDReferencePropertyAttribute.cs
- DictionaryCustomTypeDescriptor.cs
- DbDataReader.cs
- ListDataBindEventArgs.cs
- DataListItemEventArgs.cs
- DbConnectionPoolOptions.cs
- SimpleMailWebEventProvider.cs
- WebPartEditVerb.cs
- SendMessageChannelCache.cs
- Dynamic.cs
- LinkLabelLinkClickedEvent.cs
- LinkedResourceCollection.cs
- Accessible.cs
- MenuItem.cs
- ContextMenuStripActionList.cs
- SchemaElementLookUpTableEnumerator.cs
- ProfileService.cs
- Viewport3DAutomationPeer.cs
- Merger.cs
- ComponentChangingEvent.cs
- ReturnEventArgs.cs
- Properties.cs
- TextTreePropertyUndoUnit.cs
- OverlappedAsyncResult.cs
- UnrecognizedPolicyAssertionElement.cs
- ThicknessAnimation.cs
- ImportContext.cs
- OptimizedTemplateContent.cs
- VariableBinder.cs
- ISCIIEncoding.cs
- StylusButtonCollection.cs
- SqlHelper.cs
- StylusPointPropertyInfo.cs
- TableLayoutCellPaintEventArgs.cs
- ServiceModelDictionary.cs
- SystemNetworkInterface.cs
- HandoffBehavior.cs
- RefreshEventArgs.cs
- SqlProviderServices.cs
- IDReferencePropertyAttribute.cs
- returneventsaver.cs
- ResourceDescriptionAttribute.cs
- TrackBarRenderer.cs
- X509SubjectKeyIdentifierClause.cs
- cookiecollection.cs
- WorkItem.cs
- Internal.cs
- ClientOptions.cs
- UriSectionReader.cs
- TypeUtil.cs
- ReplyChannelAcceptor.cs
- XmlSchemaAnnotation.cs
- ProtectedConfigurationProviderCollection.cs
- TableLayoutPanelResizeGlyph.cs
- PageAction.cs
- SqlDataSourceQueryEditorForm.cs
- PageSetupDialog.cs
- BaseParaClient.cs
- DbExpressionVisitor_TResultType.cs
- InputLanguageCollection.cs
- WindowsListViewItemCheckBox.cs
- SecurityDocument.cs
- UriScheme.cs
- SqlMethodCallConverter.cs
- ExternalException.cs
- CellParagraph.cs
- RectangleHotSpot.cs
- DataFieldConverter.cs
- altserialization.cs
- GroupBoxRenderer.cs
- ListenerElementsCollection.cs
- GridSplitterAutomationPeer.cs
- SchemaAttDef.cs
- RegexGroupCollection.cs
- StreamAsIStream.cs
- DefaultObjectMappingItemCollection.cs
- DataGridViewEditingControlShowingEventArgs.cs
- SelectedDatesCollection.cs
- ImageKeyConverter.cs
- MD5.cs
- ConnectionStringsExpressionBuilder.cs
- TabItemAutomationPeer.cs
- EnumType.cs
- EntityClassGenerator.cs
- CopyOnWriteList.cs
- CharKeyFrameCollection.cs
- TypeToken.cs
- ProgramNode.cs
- SubqueryTrackingVisitor.cs
- MembershipSection.cs