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
- XPathDocument.cs
- ToolStripMenuItemCodeDomSerializer.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- VBIdentifierName.cs
- RedBlackList.cs
- Font.cs
- ColumnCollection.cs
- _Semaphore.cs
- COM2EnumConverter.cs
- ParameterCollectionEditorForm.cs
- ValidatedControlConverter.cs
- SynchronizationValidator.cs
- SHA512Managed.cs
- SyndicationSerializer.cs
- AuthorizationRuleCollection.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- FontFamilyConverter.cs
- formatstringdialog.cs
- CommonDialog.cs
- WrappedReader.cs
- MarkupCompilePass1.cs
- GlyphCollection.cs
- oledbconnectionstring.cs
- PropertyEmitter.cs
- TypeForwardedToAttribute.cs
- SymbolEqualComparer.cs
- QilStrConcat.cs
- Thickness.cs
- IPCCacheManager.cs
- PerformanceCounterPermissionEntryCollection.cs
- MetadataFile.cs
- Encoding.cs
- lengthconverter.cs
- EntityDataSourceValidationException.cs
- safelinkcollection.cs
- AmbientProperties.cs
- ValueTable.cs
- WmlCommandAdapter.cs
- BaseTreeIterator.cs
- EntityDataSourceView.cs
- _ListenerResponseStream.cs
- Mapping.cs
- BindingContext.cs
- BookmarkScopeInfo.cs
- BinHexEncoder.cs
- BindingExpressionUncommonField.cs
- ScriptHandlerFactory.cs
- CuspData.cs
- BitmapDecoder.cs
- HScrollBar.cs
- XmlElementAttributes.cs
- FilterElement.cs
- SpellerInterop.cs
- SelectionItemPattern.cs
- Pen.cs
- Item.cs
- CollectionBuilder.cs
- FormViewDeletedEventArgs.cs
- MultiSelector.cs
- HelpEvent.cs
- DelegatingTypeDescriptionProvider.cs
- ObjectDataSourceView.cs
- SqlInternalConnectionSmi.cs
- HandoffBehavior.cs
- ScriptResourceAttribute.cs
- SQLBinaryStorage.cs
- bindurihelper.cs
- VoiceChangeEventArgs.cs
- ItemsControl.cs
- DataGridViewTopLeftHeaderCell.cs
- RoutingExtensionElement.cs
- MenuItemAutomationPeer.cs
- SafeLocalMemHandle.cs
- HitTestFilterBehavior.cs
- GenericUI.cs
- Pair.cs
- DataRow.cs
- ConnectionsZone.cs
- TableDesigner.cs
- ISFClipboardData.cs
- TemplatedAdorner.cs
- HtmlForm.cs
- ServiceContractGenerationContext.cs
- LayoutEngine.cs
- SecurityDocument.cs
- RemotingSurrogateSelector.cs
- ReflectionServiceProvider.cs
- MissingMemberException.cs
- AsyncResult.cs
- EasingKeyFrames.cs
- SqlExpander.cs
- UrlAuthFailureHandler.cs
- SubpageParagraph.cs
- XhtmlBasicTextViewAdapter.cs
- TypeConstant.cs
- TextRangeEditLists.cs
- WebPartEditorApplyVerb.cs
- TreeNodeCollection.cs
- TaskFactory.cs
- Set.cs