Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CacheManager.cs
- FormatSettings.cs
- AuthorizationSection.cs
- MethodBody.cs
- BindingSource.cs
- StructuredTypeInfo.cs
- HwndHost.cs
- WindowAutomationPeer.cs
- TextContainerChangedEventArgs.cs
- ExtensionSimplifierMarkupObject.cs
- XPathNodeInfoAtom.cs
- Point3DAnimation.cs
- DynamicDataRouteHandler.cs
- FacetChecker.cs
- RemotingServices.cs
- ADMembershipUser.cs
- ManipulationPivot.cs
- SqlDependencyUtils.cs
- MessageHeaderT.cs
- TableStyle.cs
- WebSysDisplayNameAttribute.cs
- FastEncoderWindow.cs
- ContractSearchPattern.cs
- SerializationException.cs
- unsafeIndexingFilterStream.cs
- SpellerError.cs
- HttpContext.cs
- PerfCounterSection.cs
- OleDbWrapper.cs
- PageAsyncTaskManager.cs
- DataListItemEventArgs.cs
- VisualCollection.cs
- FormsAuthenticationUser.cs
- StrokeDescriptor.cs
- SkewTransform.cs
- _HelperAsyncResults.cs
- VectorCollectionValueSerializer.cs
- WebPartCollection.cs
- DocumentOutline.cs
- DispatcherObject.cs
- Baml2006ReaderContext.cs
- StylusButtonCollection.cs
- SemanticResultKey.cs
- SerialPort.cs
- ListViewUpdateEventArgs.cs
- WorkflowStateRollbackService.cs
- EventItfInfo.cs
- XsltSettings.cs
- TargetInvocationException.cs
- ElementHost.cs
- OdbcStatementHandle.cs
- SurrogateEncoder.cs
- Propagator.Evaluator.cs
- UnicodeEncoding.cs
- EntityDataSourceMemberPath.cs
- GZipStream.cs
- Validator.cs
- XmlSchemaSimpleTypeUnion.cs
- Win32.cs
- ConfigXmlElement.cs
- DomNameTable.cs
- KoreanCalendar.cs
- TreeIterator.cs
- UnionExpr.cs
- CapabilitiesRule.cs
- DataGridViewColumnEventArgs.cs
- Pool.cs
- DocumentXmlWriter.cs
- DynamicFilter.cs
- ClientScriptManagerWrapper.cs
- TimelineGroup.cs
- latinshape.cs
- RepeatBehaviorConverter.cs
- FormsAuthenticationUserCollection.cs
- nulltextnavigator.cs
- WmlPanelAdapter.cs
- EventLogPermissionEntryCollection.cs
- DefaultValueMapping.cs
- OleDbCommand.cs
- XsdCachingReader.cs
- WpfWebRequestHelper.cs
- Label.cs
- BaseParser.cs
- PrivilegeNotHeldException.cs
- ProfilePropertySettingsCollection.cs
- RedirectionProxy.cs
- ToolstripProfessionalRenderer.cs
- PropagatorResult.cs
- Configuration.cs
- WmlLiteralTextAdapter.cs
- TextRangeEdit.cs
- MessageBox.cs
- DataGridViewColumnStateChangedEventArgs.cs
- Evaluator.cs
- TiffBitmapDecoder.cs
- SqlUserDefinedAggregateAttribute.cs
- Bitmap.cs
- XmlnsPrefixAttribute.cs
- EventToken.cs
- TimerElapsedEvenArgs.cs