Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / ServerValidateEventArgs.cs / 1 / ServerValidateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DSASignatureDeformatter.cs
- TransactionCache.cs
- RoutedEventHandlerInfo.cs
- HyperLinkDataBindingHandler.cs
- GeneralTransform3D.cs
- BaseAddressElementCollection.cs
- ReliableSessionElement.cs
- BuilderInfo.cs
- SoapTypeAttribute.cs
- TypeLibConverter.cs
- BitmapEffectInput.cs
- DocumentPage.cs
- ValidationRule.cs
- MessageQueueTransaction.cs
- RSAPKCS1SignatureDeformatter.cs
- DataGridViewColumnEventArgs.cs
- TrackBar.cs
- ScrollProperties.cs
- HttpHostedTransportConfiguration.cs
- BinaryWriter.cs
- MethodToken.cs
- IMembershipProvider.cs
- TextDecoration.cs
- RijndaelManaged.cs
- ProgressBarRenderer.cs
- LineBreakRecord.cs
- GenericPrincipal.cs
- GroupPartitionExpr.cs
- SQLByteStorage.cs
- KoreanLunisolarCalendar.cs
- XamlVector3DCollectionSerializer.cs
- X509UI.cs
- ConfigurationSectionGroup.cs
- ResourceReader.cs
- ImageListUtils.cs
- TemplateControlParser.cs
- RuntimeArgumentHandle.cs
- TextServicesHost.cs
- EastAsianLunisolarCalendar.cs
- ElementFactory.cs
- BitmapSource.cs
- MenuCommands.cs
- SqlCommandBuilder.cs
- RectAnimationUsingKeyFrames.cs
- HtmlControl.cs
- cookieexception.cs
- CounterCreationData.cs
- figurelengthconverter.cs
- FormViewUpdatedEventArgs.cs
- UrlPath.cs
- EnumerableCollectionView.cs
- TableSectionStyle.cs
- TypedReference.cs
- DrawListViewSubItemEventArgs.cs
- BuildTopDownAttribute.cs
- LicenseManager.cs
- WMIInterop.cs
- ByteAnimationBase.cs
- NonBatchDirectoryCompiler.cs
- ObjectResult.cs
- MultiByteCodec.cs
- PopOutPanel.cs
- CodeDirectoryCompiler.cs
- UIElement3DAutomationPeer.cs
- ChannelAcceptor.cs
- ByteRangeDownloader.cs
- EmissiveMaterial.cs
- HttpHandlerActionCollection.cs
- GACIdentityPermission.cs
- BooleanConverter.cs
- DataGridPreparingCellForEditEventArgs.cs
- SortedSet.cs
- AutomationPatternInfo.cs
- VirtualDirectoryMappingCollection.cs
- AssemblyNameProxy.cs
- DictionarySectionHandler.cs
- TimeSpanValidator.cs
- KeyedHashAlgorithm.cs
- WindowProviderWrapper.cs
- EdgeModeValidation.cs
- ReflectTypeDescriptionProvider.cs
- LineGeometry.cs
- ValidationUtility.cs
- BitmapMetadata.cs
- DrawingBrush.cs
- TreeNodeMouseHoverEvent.cs
- DataControlButton.cs
- Int32CollectionConverter.cs
- FormsAuthenticationModule.cs
- Int32Animation.cs
- IISUnsafeMethods.cs
- PersonalizationProviderCollection.cs
- StyleSheetRefUrlEditor.cs
- StateBag.cs
- XsdDateTime.cs
- SoundPlayer.cs
- XmlLoader.cs
- NetCodeGroup.cs
- PageEventArgs.cs
- PrintPageEvent.cs