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;
///
/// Provides data for the
/// event of the .
///
public class ServerValidateEventArgs : EventArgs {
private bool isValid;
private string value;
///
/// Initializes a new instance of the
/// class.
///
public ServerValidateEventArgs(string value, bool isValid) : base() {
this.isValid = isValid;
this.value = value;
}
///
/// Gets the string value to validate.
///
public string Value {
get {
return value;
}
}
///
/// 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
- UDPClient.cs
- DocumentSequenceHighlightLayer.cs
- ExpressionBinding.cs
- UnsafeNativeMethodsCLR.cs
- MsmqUri.cs
- CSharpCodeProvider.cs
- ListViewHitTestInfo.cs
- AsyncCompletedEventArgs.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- ListParaClient.cs
- ProgressiveCrcCalculatingStream.cs
- _AutoWebProxyScriptHelper.cs
- XmlElementAttributes.cs
- BaseDataList.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- CurrencyManager.cs
- DBConnectionString.cs
- MessageAction.cs
- EntityProviderServices.cs
- CompatibleComparer.cs
- SchemaSetCompiler.cs
- TextEncodedRawTextWriter.cs
- DataGridViewCellValueEventArgs.cs
- DescendantQuery.cs
- ReferencedType.cs
- StringUtil.cs
- ScriptIgnoreAttribute.cs
- GradientStop.cs
- Rect3D.cs
- Timeline.cs
- CollectionEditor.cs
- BitmapEffectDrawing.cs
- LineInfo.cs
- DirectoryRedirect.cs
- HttpModulesSection.cs
- DictionarySectionHandler.cs
- ProfileGroupSettings.cs
- ComplexLine.cs
- SamlConstants.cs
- XmlPreloadedResolver.cs
- SimpleFileLog.cs
- WebPartDisplayModeCollection.cs
- RegexGroupCollection.cs
- DataPagerFieldCollection.cs
- FilterQueryOptionExpression.cs
- ComplexType.cs
- DataTableMapping.cs
- ColumnCollection.cs
- ResXResourceWriter.cs
- OleDbPermission.cs
- ProjectedSlot.cs
- ReflectionHelper.cs
- PreservationFileWriter.cs
- SiteMapNode.cs
- DataKeyArray.cs
- DodSequenceMerge.cs
- _ScatterGatherBuffers.cs
- TreeNodeMouseHoverEvent.cs
- OptimizerPatterns.cs
- Soap.cs
- Application.cs
- HttpRuntime.cs
- BufferAllocator.cs
- MetadataSource.cs
- EntitySqlException.cs
- ToolboxItemFilterAttribute.cs
- PackageRelationshipCollection.cs
- BitmapEffect.cs
- XmlSchemaSet.cs
- DoubleAnimation.cs
- ToolBarButton.cs
- TabItem.cs
- PtsHost.cs
- PenLineCapValidation.cs
- HyperLink.cs
- GatewayIPAddressInformationCollection.cs
- AdCreatedEventArgs.cs
- DrawListViewColumnHeaderEventArgs.cs
- InputQueue.cs
- DelegateTypeInfo.cs
- BindingGroup.cs
- RectangleF.cs
- ConsoleKeyInfo.cs
- ExpressionLink.cs
- DecoratedNameAttribute.cs
- CodeComment.cs
- EdmMember.cs
- SqlFormatter.cs
- BindingExpressionUncommonField.cs
- EntityKey.cs
- DurationConverter.cs
- RadioButtonList.cs
- TableChangeProcessor.cs
- Crc32.cs
- PasswordPropertyTextAttribute.cs
- XPathBuilder.cs
- IconHelper.cs
- HyperLinkColumn.cs
- MinimizableAttributeTypeConverter.cs
- PropertyCondition.cs