Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / TypeValidationEventArgs.cs / 1305376 / TypeValidationEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { ////// TypeValidationEventArgs. Provides data for the TypeValidationEventHandler event. /// public class TypeValidationEventArgs : EventArgs { private Type validatingType; private string message; private bool isValidInput; private object returnValue; private bool cancel; public TypeValidationEventArgs(Type validatingType, bool isValidInput, object returnValue, string message) { this.validatingType = validatingType; this.isValidInput = isValidInput; this.returnValue = returnValue; this.message = message; } ////// Specifies whether focus should be allowed to be shifted from the control. /// public bool Cancel { get { return this.cancel; } set { this.cancel = value; } } ////// The exception thrown by the validating object while performing the data validation. /// public bool IsValidInput { get { return this.isValidInput; } } ////// A message about the validation operation. Intended to be populated with an exception information if /// any thrown. /// public string Message { get { return this.message; } } ////// The value returned from the Parse method. /// public object ReturnValue { get { return this.returnValue; } } ////// The position where the test failed the mask constraint. /// public Type ValidatingType { get { return this.validatingType; } } } } // 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
- NonceCache.cs
- PtsHelper.cs
- ToggleButtonAutomationPeer.cs
- StorageComplexPropertyMapping.cs
- EncoderBestFitFallback.cs
- WebPartDisplayModeCollection.cs
- HttpRuntime.cs
- XmlAttributes.cs
- RefExpr.cs
- CachedFontFamily.cs
- NavigationWindow.cs
- CompiledQueryCacheEntry.cs
- DragDeltaEventArgs.cs
- ExpressionEditor.cs
- ImageListStreamer.cs
- XmlCharCheckingReader.cs
- XmlUTF8TextReader.cs
- ThreadAbortException.cs
- RefreshPropertiesAttribute.cs
- CommandHelper.cs
- CellParaClient.cs
- DataGridParentRows.cs
- RuntimeResourceSet.cs
- DesignerActionUIStateChangeEventArgs.cs
- PageBreakRecord.cs
- RetrieveVirtualItemEventArgs.cs
- GroupPartitionExpr.cs
- XmlBoundElement.cs
- FindProgressChangedEventArgs.cs
- DrawingCollection.cs
- Latin1Encoding.cs
- DayRenderEvent.cs
- DecoderNLS.cs
- ConfigurationManagerInternalFactory.cs
- DiscoveryMessageSequence11.cs
- RegexCompiler.cs
- CalendarAutoFormatDialog.cs
- ComPlusThreadInitializer.cs
- FormsAuthenticationConfiguration.cs
- BindableTemplateBuilder.cs
- HttpHeaderCollection.cs
- HttpListenerRequest.cs
- Attribute.cs
- AppSettingsReader.cs
- DefaultExpression.cs
- HttpStreamXmlDictionaryWriter.cs
- EventManager.cs
- xml.cs
- ResourceProviderFactory.cs
- SchemaConstraints.cs
- SettingsPropertyValueCollection.cs
- ValidationRule.cs
- MgmtResManager.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- HttpConfigurationContext.cs
- DataGridViewRowCollection.cs
- ToolStripPanelRow.cs
- XmlConvert.cs
- WorkflowApplicationCompletedException.cs
- Array.cs
- PerspectiveCamera.cs
- LockingPersistenceProvider.cs
- RegistryExceptionHelper.cs
- HttpBufferlessInputStream.cs
- DbConnectionStringBuilder.cs
- EqualityComparer.cs
- DesignerValidationSummaryAdapter.cs
- ThrowHelper.cs
- Publisher.cs
- EnlistmentTraceIdentifier.cs
- LinkTarget.cs
- SecurityStandardsManager.cs
- MessageSecurityTokenVersion.cs
- XmlSchemaException.cs
- ExtensionQuery.cs
- GuidConverter.cs
- BulletedListEventArgs.cs
- RemoteWebConfigurationHostStream.cs
- HtmlTextArea.cs
- thaishape.cs
- CommandCollectionEditor.cs
- CookielessHelper.cs
- DataColumnCollection.cs
- ContextProperty.cs
- WindowsScrollBar.cs
- ConstraintEnumerator.cs
- TabRenderer.cs
- RolePrincipal.cs
- Guid.cs
- TiffBitmapDecoder.cs
- QueryableFilterRepeater.cs
- Point.cs
- FacetChecker.cs
- TextCompositionManager.cs
- Image.cs
- StreamGeometry.cs
- ThreadAbortException.cs
- ObjectDisposedException.cs
- ConnectionsZone.cs
- IImplicitResourceProvider.cs