Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / AccessibleTech / longhorn / Automation / UIAutomationTypes / System / Windows / Automation / ElementNotEnabledException.cs / 1 / ElementNotEnabledException.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Exception thrown when client attemps to interact with a non- // enabled control (eg. Invoke a non-enabled button) // // History: // 08/06/2003 : [....] Created // //--------------------------------------------------------------------------- using System.Windows.Automation; using System; using System.Runtime.Serialization; using System.Security.Permissions; using MS.Win32; using MS.Internal.Automation; namespace System.Windows.Automation { ////// This exception is thrown when client code attemps to manipulate /// an element or control that is currently not enabled. /// [Serializable] #if (INTERNAL_COMPILE) internal class ElementNotEnabledException : InvalidOperationException #else public class ElementNotEnabledException : InvalidOperationException #endif { ////// Default constructor /// public ElementNotEnabledException() : base(SR.Get(SRID.ElementNotEnabled)) { HResult = UiaCoreTypesApi.UIA_E_ELEMENTNOTENABLED; } ////// constructor /// /// public ElementNotEnabledException(String message) : base(message) { HResult = UiaCoreTypesApi.UIA_E_ELEMENTNOTENABLED; } ////// constructor /// /// /// public ElementNotEnabledException(string message, Exception innerException) : base(message, innerException) { HResult = UiaCoreTypesApi.UIA_E_ELEMENTNOTENABLED; } ////// Constructor for serialization /// //CASRemoval:[SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] protected ElementNotEnabledException(SerializationInfo info, StreamingContext context) : base(info, context) { HResult = UiaCoreTypesApi.UIA_E_ELEMENTNOTENABLED; } ////// Populates a SerializationInfo with the data needed to serialize the target object. /// /// The SerializationInfo to populate with data. /// The destination for this serialization. [SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XPathNavigatorKeyComparer.cs
- XmlSchemaInclude.cs
- SEHException.cs
- XmlSchemaAnnotation.cs
- MimeTypeMapper.cs
- WebPartConnection.cs
- DataTableReader.cs
- MultipartIdentifier.cs
- DropSource.cs
- DateTimeStorage.cs
- SqlGatherConsumedAliases.cs
- WebResourceAttribute.cs
- messageonlyhwndwrapper.cs
- DataGridHeaderBorder.cs
- AxHost.cs
- ParameterModifier.cs
- WindowsRichEditRange.cs
- ElementProxy.cs
- SchemaNames.cs
- DBSqlParserTableCollection.cs
- ActiveDocumentEvent.cs
- HttpWebResponse.cs
- MenuAdapter.cs
- ValueChangedEventManager.cs
- CollectionViewGroupRoot.cs
- RSACryptoServiceProvider.cs
- DispatcherExceptionEventArgs.cs
- CompositeScriptReferenceEventArgs.cs
- DataGridViewLinkColumn.cs
- LayoutInformation.cs
- UDPClient.cs
- InputManager.cs
- ResourceContainer.cs
- FilterElement.cs
- ToolbarAUtomationPeer.cs
- BlurBitmapEffect.cs
- Baml2006ReaderContext.cs
- TypeSystemHelpers.cs
- UnaryNode.cs
- QilTypeChecker.cs
- xml.cs
- WebControlsSection.cs
- VersionedStream.cs
- HandlerMappingMemo.cs
- ClientRuntimeConfig.cs
- SqlInternalConnectionTds.cs
- XPathDescendantIterator.cs
- XmlSerializerObjectSerializer.cs
- MessageRpc.cs
- MergeFailedEvent.cs
- XpsS0ValidatingLoader.cs
- SchemaRegistration.cs
- NameService.cs
- GcSettings.cs
- SemanticResolver.cs
- SoapIgnoreAttribute.cs
- DragEventArgs.cs
- FlowDecision.cs
- FontCacheLogic.cs
- Ref.cs
- FtpWebRequest.cs
- ObjectTag.cs
- ToolStripSplitStackLayout.cs
- TextSelection.cs
- ClosableStream.cs
- MatrixAnimationUsingKeyFrames.cs
- SQLBinaryStorage.cs
- XmlEntityReference.cs
- BindingObserver.cs
- LassoHelper.cs
- XXXInfos.cs
- QueryOperationResponseOfT.cs
- ObjectStateManagerMetadata.cs
- TraceListener.cs
- AbstractSvcMapFileLoader.cs
- SqlExpander.cs
- XmlDigitalSignatureProcessor.cs
- SqlTypesSchemaImporter.cs
- MasterPage.cs
- ListViewCommandEventArgs.cs
- FieldCollectionEditor.cs
- KnownTypesProvider.cs
- nulltextnavigator.cs
- mda.cs
- EventWaitHandleSecurity.cs
- XPathPatternBuilder.cs
- FileNotFoundException.cs
- DictionaryCustomTypeDescriptor.cs
- FrugalList.cs
- DtdParser.cs
- CustomWebEventKey.cs
- HttpCookiesSection.cs
- RevocationPoint.cs
- SourceFileBuildProvider.cs
- CachedPathData.cs
- CustomTokenProvider.cs
- XmlBaseWriter.cs
- DataGrid.cs
- SemanticResultKey.cs
- SerTrace.cs