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
- ScriptReferenceBase.cs
- QueryOperator.cs
- PointIndependentAnimationStorage.cs
- MultiView.cs
- SequentialOutput.cs
- ApplicationContext.cs
- SynchronousChannel.cs
- UTF8Encoding.cs
- DeclarationUpdate.cs
- FileInfo.cs
- HttpContextServiceHost.cs
- PageRequestManager.cs
- SimpleHandlerFactory.cs
- FileSystemEnumerable.cs
- ResourceDictionaryCollection.cs
- XmlCountingReader.cs
- EventSourceCreationData.cs
- XmlReaderSettings.cs
- FlowDocumentReaderAutomationPeer.cs
- URI.cs
- ImmutableCollection.cs
- HtmlTableRowCollection.cs
- ToolStripDropTargetManager.cs
- StyleCollection.cs
- XhtmlBasicLiteralTextAdapter.cs
- CancellationHandler.cs
- ModelItemCollectionImpl.cs
- SubMenuStyleCollection.cs
- ClientScriptManager.cs
- SqlRowUpdatingEvent.cs
- IntranetCredentialPolicy.cs
- DataGridTextBox.cs
- PropagatorResult.cs
- UnsupportedPolicyOptionsException.cs
- SqlTriggerAttribute.cs
- ReferenceService.cs
- DBSchemaRow.cs
- XPathBinder.cs
- RelatedImageListAttribute.cs
- XPathDocumentIterator.cs
- SubstitutionDesigner.cs
- TemplateDefinition.cs
- XmlImplementation.cs
- DependencyStoreSurrogate.cs
- FunctionImportElement.cs
- XXXInfos.cs
- SessionParameter.cs
- RadioButtonList.cs
- HeaderUtility.cs
- WebPartUserCapability.cs
- ContextStaticAttribute.cs
- ConfigurationLockCollection.cs
- LiteralControl.cs
- SyndicationElementExtension.cs
- XmlEventCache.cs
- StreamingContext.cs
- XmlIncludeAttribute.cs
- ArraySet.cs
- WizardPanel.cs
- TypeResolver.cs
- ReceiveReply.cs
- UrlPath.cs
- HttpDictionary.cs
- CompositeControl.cs
- MetaForeignKeyColumn.cs
- COM2ExtendedUITypeEditor.cs
- LifetimeServices.cs
- UInt64Converter.cs
- Sql8ConformanceChecker.cs
- ProfileSettingsCollection.cs
- TextRunTypographyProperties.cs
- CompositionAdorner.cs
- ParagraphResult.cs
- DetectRunnableInstancesTask.cs
- ReadOnlyNameValueCollection.cs
- CallbackValidator.cs
- ContextMenuStrip.cs
- ResourcesGenerator.cs
- MatrixKeyFrameCollection.cs
- ProcessInputEventArgs.cs
- TreeNodeSelectionProcessor.cs
- FrameSecurityDescriptor.cs
- SchemaRegistration.cs
- HtmlTableRow.cs
- TreeChangeInfo.cs
- PseudoWebRequest.cs
- WindowsTreeView.cs
- Simplifier.cs
- XmlSchemaImport.cs
- TimeSpanStorage.cs
- FlowDocumentPage.cs
- HierarchicalDataTemplate.cs
- MediaPlayerState.cs
- XamlNamespaceHelper.cs
- Tokenizer.cs
- BufferBuilder.cs
- RowType.cs
- HandlerMappingMemo.cs
- CaseStatement.cs
- DocumentDesigner.cs