Code:
/ FX-1434 / FX-1434 / 1.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
- CodeStatementCollection.cs
- BordersPage.cs
- NullableConverter.cs
- GregorianCalendarHelper.cs
- SamlAttributeStatement.cs
- ApplicationGesture.cs
- SecurityTokenAuthenticator.cs
- FixedSOMImage.cs
- XslTransform.cs
- WebBrowserNavigatingEventHandler.cs
- SQLBytes.cs
- VirtualDirectoryMappingCollection.cs
- SchemaTypeEmitter.cs
- DataBoundControlParameterTarget.cs
- AutomationElementCollection.cs
- URIFormatException.cs
- SqlBulkCopyColumnMappingCollection.cs
- TextRangeEditLists.cs
- CounterCreationDataConverter.cs
- OracleRowUpdatedEventArgs.cs
- InteropBitmapSource.cs
- RsaKeyIdentifierClause.cs
- XmlSchemaComplexType.cs
- ItemCollection.cs
- EntityDataSourceViewSchema.cs
- WindowsSecurityTokenAuthenticator.cs
- BamlRecordHelper.cs
- ObjectListFieldsPage.cs
- HtmlString.cs
- DataGridItem.cs
- DotExpr.cs
- KeyManager.cs
- BindingManagerDataErrorEventArgs.cs
- WebPartConnectVerb.cs
- ScriptingProfileServiceSection.cs
- ScrollViewerAutomationPeer.cs
- AssemblyCache.cs
- ValidatedControlConverter.cs
- SqlMethodTransformer.cs
- _AutoWebProxyScriptHelper.cs
- MethodBody.cs
- TemplateApplicationHelper.cs
- MsmqIntegrationMessagePool.cs
- ToolStripComboBox.cs
- VectorConverter.cs
- DataControlPagerLinkButton.cs
- GetLedgerEntryForRecipientRequest.cs
- DPAPIProtectedConfigurationProvider.cs
- Object.cs
- StatusBarPanel.cs
- SimpleHandlerBuildProvider.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- ProcessModelInfo.cs
- MailAddressCollection.cs
- PropertyGridView.cs
- Int64KeyFrameCollection.cs
- XmlLoader.cs
- TypeDescriptionProviderAttribute.cs
- FixedDocument.cs
- WebServiceHostFactory.cs
- DocumentReference.cs
- DbgUtil.cs
- CounterSample.cs
- HashHelper.cs
- Rotation3DAnimation.cs
- DbParameterCollection.cs
- ManipulationDevice.cs
- GridViewItemAutomationPeer.cs
- DataGridViewCellFormattingEventArgs.cs
- EntityTypeEmitter.cs
- ImageAnimator.cs
- ProcessModuleDesigner.cs
- ImageBrush.cs
- OleDbError.cs
- CommonRemoteMemoryBlock.cs
- TextAction.cs
- XamlPointCollectionSerializer.cs
- SafeProcessHandle.cs
- DataGridTextBoxColumn.cs
- TcpSocketManager.cs
- ConnectionConsumerAttribute.cs
- PropertyGridView.cs
- QuaternionAnimationUsingKeyFrames.cs
- IxmlLineInfo.cs
- SafeNativeMethods.cs
- RenderingBiasValidation.cs
- TextClipboardData.cs
- FixedSOMTextRun.cs
- VisualCollection.cs
- PolyBezierSegment.cs
- NetWebProxyFinder.cs
- BStrWrapper.cs
- SvcMapFileSerializer.cs
- ContainsRowNumberChecker.cs
- Utilities.cs
- MsmqAppDomainProtocolHandler.cs
- HtmlMeta.cs
- HttpModuleActionCollection.cs
- DisplayNameAttribute.cs
- SHA512.cs