Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / ServerValidateEventArgs.cs / 1305376 / ServerValidateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; ////// public class ServerValidateEventArgs : EventArgs { private bool isValid; private string value; ///Provides data for the /// ///event of the . /// public ServerValidateEventArgs(string value, bool isValid) : base() { this.isValid = isValid; this.value = value; } ///Initializes a new instance of the ////// class. /// public string Value { get { return value; } } ///Gets the string value to validate. ////// Gets or sets whether the input is valid. /// public bool IsValid { get { return isValid; } set { this.isValid = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; ////// public class ServerValidateEventArgs : EventArgs { private bool isValid; private string value; ///Provides data for the /// ///event of the . /// public ServerValidateEventArgs(string value, bool isValid) : base() { this.isValid = isValid; this.value = value; } ///Initializes a new instance of the ////// class. /// public string Value { get { return value; } } ///Gets the string value to validate. ////// Gets or sets whether the input is valid. /// public bool IsValid { get { return isValid; } set { this.isValid = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UserPreferenceChangingEventArgs.cs
- EDesignUtil.cs
- SharedPersonalizationStateInfo.cs
- TypeAccessException.cs
- AutoResetEvent.cs
- BuilderPropertyEntry.cs
- FlowchartStart.xaml.cs
- Crc32Helper.cs
- FlagsAttribute.cs
- MarshalByRefObject.cs
- GuidelineSet.cs
- WithParamAction.cs
- cache.cs
- XMLUtil.cs
- XPathScanner.cs
- XAMLParseException.cs
- EventLogEntry.cs
- DesignerTextViewAdapter.cs
- InfoCardSymmetricCrypto.cs
- ElementsClipboardData.cs
- ChannelServices.cs
- Point3DAnimation.cs
- CultureSpecificCharacterBufferRange.cs
- DispatchWrapper.cs
- OracleRowUpdatingEventArgs.cs
- TextEditorSpelling.cs
- ComponentChangingEvent.cs
- XamlValidatingReader.cs
- UriTemplateMatchException.cs
- RegexGroupCollection.cs
- ChtmlCommandAdapter.cs
- ColorConverter.cs
- ObjectContext.cs
- StaticSiteMapProvider.cs
- NavigationHelper.cs
- ClientType.cs
- Attributes.cs
- SystemTcpStatistics.cs
- AlphaSortedEnumConverter.cs
- DetailsViewModeEventArgs.cs
- MethodExecutor.cs
- ListItemViewAttribute.cs
- PresentationSource.cs
- PathSegmentCollection.cs
- CodeDefaultValueExpression.cs
- ManagedIStream.cs
- GeometryModel3D.cs
- CheckBoxPopupAdapter.cs
- CroppedBitmap.cs
- Identity.cs
- Authorization.cs
- Attributes.cs
- SerializationEventsCache.cs
- Cursor.cs
- EditingMode.cs
- GenericParameterDataContract.cs
- DataTableReader.cs
- SiteMap.cs
- CompatibleIComparer.cs
- Wildcard.cs
- CryptoProvider.cs
- MILUtilities.cs
- ColorAnimationBase.cs
- XsltContext.cs
- SchemaNamespaceManager.cs
- DocumentGridContextMenu.cs
- XPathNodeInfoAtom.cs
- TextProperties.cs
- TaiwanCalendar.cs
- AppearanceEditorPart.cs
- ValuePattern.cs
- RijndaelCryptoServiceProvider.cs
- TreeViewEvent.cs
- ColorBlend.cs
- EventManager.cs
- messageonlyhwndwrapper.cs
- ImageBrush.cs
- HtmlInputPassword.cs
- HtmlInputReset.cs
- CatalogPartDesigner.cs
- AuthenticationService.cs
- NativeMethods.cs
- WindowInteropHelper.cs
- SafeSecurityHandles.cs
- PriorityBinding.cs
- UrlPath.cs
- SocketAddress.cs
- DataAccessor.cs
- DataViewSettingCollection.cs
- ScrollPatternIdentifiers.cs
- WindowsSolidBrush.cs
- CodeSnippetTypeMember.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- SQLByteStorage.cs
- HtmlSelect.cs
- SharingService.cs
- ViewPort3D.cs
- GlobalizationSection.cs
- GlobalEventManager.cs
- SqlParameterCollection.cs