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
- ThrowHelper.cs
- XamlContextStack.cs
- Thread.cs
- ServiceChannelManager.cs
- ThreadStartException.cs
- ProgressChangedEventArgs.cs
- regiisutil.cs
- XmlComplianceUtil.cs
- NamespaceInfo.cs
- MarkupObject.cs
- URLAttribute.cs
- InvalidComObjectException.cs
- HttpClientCertificate.cs
- XmlTextWriter.cs
- HttpInputStream.cs
- ImpersonateTokenRef.cs
- WSHttpSecurity.cs
- OleDbParameterCollection.cs
- RegexWriter.cs
- ErrorCodes.cs
- LinearGradientBrush.cs
- SqlMultiplexer.cs
- DependencyPropertyKind.cs
- EdmScalarPropertyAttribute.cs
- XmlAtomErrorReader.cs
- ChangeBlockUndoRecord.cs
- GroupBox.cs
- ProfileParameter.cs
- DetailsView.cs
- Mappings.cs
- ThreadStartException.cs
- DataSourceComponent.cs
- DataSourceSelectArguments.cs
- XPathParser.cs
- HandleCollector.cs
- RuleRefElement.cs
- SignedPkcs7.cs
- RTLAwareMessageBox.cs
- ClonableStack.cs
- WebBaseEventKeyComparer.cs
- Drawing.cs
- GeneratedView.cs
- LogicalTreeHelper.cs
- XmlSchemaAttributeGroup.cs
- ControlCollection.cs
- CodeMemberMethod.cs
- ColorComboBox.cs
- SelectedDatesCollection.cs
- HuffmanTree.cs
- List.cs
- FormsAuthenticationUserCollection.cs
- SoapException.cs
- ObservableCollection.cs
- RadioButtonFlatAdapter.cs
- HostProtectionPermission.cs
- MenuItemStyle.cs
- SafeEventLogWriteHandle.cs
- HMACSHA256.cs
- SequentialUshortCollection.cs
- ServiceContractGenerator.cs
- RefreshEventArgs.cs
- DBCommand.cs
- XmlConvert.cs
- ManagementEventArgs.cs
- ModelPropertyDescriptor.cs
- AddInAdapter.cs
- CompilerInfo.cs
- PathSegment.cs
- ListBox.cs
- Binding.cs
- InfiniteTimeSpanConverter.cs
- HttpContextWrapper.cs
- TraceListeners.cs
- DesignTimeTemplateParser.cs
- CalendarTable.cs
- HwndTarget.cs
- MinMaxParagraphWidth.cs
- DataGridViewRowCollection.cs
- HttpDigestClientElement.cs
- BoundColumn.cs
- TextEvent.cs
- DataColumn.cs
- MemoryStream.cs
- StructuredCompositeActivityDesigner.cs
- DataGridViewRowEventArgs.cs
- ThreadExceptionDialog.cs
- WizardForm.cs
- UncommonField.cs
- sitestring.cs
- PersonalizationStateInfoCollection.cs
- CompoundFileStorageReference.cs
- XmlAttributes.cs
- SqlBulkCopy.cs
- WebRequest.cs
- TdsRecordBufferSetter.cs
- Gdiplus.cs
- GlyphShapingProperties.cs
- DataRowComparer.cs
- DataServiceResponse.cs
- documentsequencetextpointer.cs