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
- FlowchartSizeFeature.cs
- ExpressionVisitor.cs
- MouseEvent.cs
- SqlDesignerDataSourceView.cs
- WindowsRichEditRange.cs
- TimeSpanParse.cs
- mda.cs
- WebPermission.cs
- ToolStripDropDownDesigner.cs
- HtmlMeta.cs
- DecoderExceptionFallback.cs
- UniqueConstraint.cs
- __Filters.cs
- PagerSettings.cs
- FontSourceCollection.cs
- Operand.cs
- ObjectView.cs
- WebMessageFormatHelper.cs
- AstTree.cs
- UInt16Converter.cs
- TableRowCollection.cs
- HtmlContainerControl.cs
- EditorBrowsableAttribute.cs
- HtmlTextArea.cs
- SamlAuthorityBinding.cs
- GrammarBuilderRuleRef.cs
- VariableQuery.cs
- TdsValueSetter.cs
- TargetFrameworkUtil.cs
- InputLanguageCollection.cs
- QuaternionAnimationBase.cs
- ReliableMessagingVersion.cs
- RecordManager.cs
- HttpListener.cs
- GridViewEditEventArgs.cs
- DataControlCommands.cs
- AxWrapperGen.cs
- TypeUtil.cs
- BaseUriHelper.cs
- InputMethodStateChangeEventArgs.cs
- FormViewCommandEventArgs.cs
- OrderByBuilder.cs
- PageThemeParser.cs
- _ShellExpression.cs
- XmlUnspecifiedAttribute.cs
- WindowsStartMenu.cs
- PopupControlService.cs
- StatusBarDesigner.cs
- Message.cs
- SvcMapFileLoader.cs
- ControlOperationBehavior.cs
- CopyNamespacesAction.cs
- UnsettableComboBox.cs
- TextElementAutomationPeer.cs
- DockPatternIdentifiers.cs
- ValueType.cs
- WindowsListViewSubItem.cs
- XPathEmptyIterator.cs
- WpfXamlMember.cs
- ComponentCollection.cs
- SizeChangedEventArgs.cs
- XmlIncludeAttribute.cs
- ArrayEditor.cs
- DropDownList.cs
- FormViewInsertEventArgs.cs
- Label.cs
- FileDetails.cs
- CryptoStream.cs
- ValuePattern.cs
- ResolveNameEventArgs.cs
- CompositeFontFamily.cs
- SafeNativeMethodsCLR.cs
- AstNode.cs
- ResourceDisplayNameAttribute.cs
- ReadOnlyDataSource.cs
- DecoderFallbackWithFailureFlag.cs
- ConfigurationElement.cs
- TextCharacters.cs
- SqlLiftWhereClauses.cs
- FileReader.cs
- DocumentScope.cs
- XmlCDATASection.cs
- LocalValueEnumerator.cs
- DatagramAdapter.cs
- NetworkInformationPermission.cs
- InstanceDataCollection.cs
- TemplateControlBuildProvider.cs
- DocumentPaginator.cs
- DetailsViewDesigner.cs
- Exceptions.cs
- PrivateFontCollection.cs
- QueryOutputWriter.cs
- HttpApplicationFactory.cs
- GridViewSortEventArgs.cs
- NegationPusher.cs
- SlipBehavior.cs
- MachineKeyConverter.cs
- DataGridViewTextBoxCell.cs
- ObjectQuery_EntitySqlExtensions.cs
- SafeMILHandle.cs