Code:
/ DotNET / DotNET / 8.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
- PermissionSet.cs
- XmlSchemaProviderAttribute.cs
- RadioButtonPopupAdapter.cs
- Compiler.cs
- DetailsViewCommandEventArgs.cs
- TableAutomationPeer.cs
- DebugView.cs
- Peer.cs
- VerificationAttribute.cs
- CodeDOMUtility.cs
- SqlFactory.cs
- State.cs
- HandleCollector.cs
- UInt16Converter.cs
- HttpHandlerActionCollection.cs
- ConditionCollection.cs
- BinHexEncoder.cs
- CollectionView.cs
- SortKey.cs
- DataGridItem.cs
- PathSegment.cs
- StreamWriter.cs
- AdapterDictionary.cs
- DispatchChannelSink.cs
- SourceLineInfo.cs
- SelfIssuedAuthAsymmetricKey.cs
- RequestQueryProcessor.cs
- RuleSettingsCollection.cs
- ConfigXmlWhitespace.cs
- ThrowHelper.cs
- x509utils.cs
- CollectionDataContractAttribute.cs
- GenericEnumConverter.cs
- ResourcePermissionBaseEntry.cs
- SafeFileMapViewHandle.cs
- Coordinator.cs
- HtmlTable.cs
- Annotation.cs
- ActiveDocumentEvent.cs
- GeneralTransform3DGroup.cs
- ExternalFile.cs
- RawStylusInputCustomDataList.cs
- ToolStripDropDownMenu.cs
- TextStore.cs
- NonDualMessageSecurityOverHttp.cs
- NullReferenceException.cs
- ArraySortHelper.cs
- BezierSegment.cs
- EntitySqlException.cs
- HtmlTableRowCollection.cs
- ResourceBinder.cs
- DataGridLinkButton.cs
- Accessible.cs
- HttpListenerResponse.cs
- HtmlTableRow.cs
- HandleDictionary.cs
- ReadOnlyNameValueCollection.cs
- EditBehavior.cs
- CfgSemanticTag.cs
- PassportAuthentication.cs
- ListenerServiceInstallComponent.cs
- StringFormat.cs
- ViewEvent.cs
- Context.cs
- InputScopeConverter.cs
- ListViewItemSelectionChangedEvent.cs
- RelativeSource.cs
- TypeCacheManager.cs
- XamlDesignerSerializationManager.cs
- ConfigurationSection.cs
- Frame.cs
- Stylesheet.cs
- ListViewGroup.cs
- EntityKeyElement.cs
- MetadataItemCollectionFactory.cs
- MethodCallTranslator.cs
- StandardCommandToolStripMenuItem.cs
- TableRow.cs
- XPathConvert.cs
- ObjectConverter.cs
- RegexStringValidatorAttribute.cs
- XmlElementAttributes.cs
- ExpressionHelper.cs
- FtpRequestCacheValidator.cs
- PerformanceCounterPermission.cs
- CodeComment.cs
- TransformedBitmap.cs
- DataSourceHelper.cs
- WindowsClientCredential.cs
- SHA256.cs
- ParentUndoUnit.cs
- MemberNameValidator.cs
- WebContext.cs
- XLinq.cs
- OutputCacheSection.cs
- HatchBrush.cs
- ConditionalWeakTable.cs
- CompilerErrorCollection.cs
- infer.cs
- FileVersionInfo.cs