Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / UIAutomation / UIAutomationClient / System / Windows / Automation / NotCondition.cs / 1 / NotCondition.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // // History: // 10/14/2003 : BrendanM - Created // //--------------------------------------------------------------------------- using System; using MS.Internal.Automation; using System.Windows.Automation; namespace System.Windows.Automation { ////// Condition that checks whether a pattern is currently present for a LogicalElement /// #if (INTERNAL_COMPILE) internal class NotCondition : Condition #else public class NotCondition : Condition #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Constructor to create a condition that negates the specified condition /// /// Condition to negate public NotCondition( Condition condition ) { Misc.ValidateArgumentNonNull( condition, "condition" ); _condition = condition; // DangerousGetHandle() reminds us that the IntPtr we get back could be collected/released/recycled. We're safe here, // because the Conditions are structured in a tree, with the root one (which gets passed to the Uia API) keeping all // others - and their associated data - alive. (Recycling isn't an issue as these are immutable classes.) SetMarshalData(new UiaCoreApi.UiaNotCondition(_condition._safeHandle.DangerousGetHandle())); } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties ////// Returns the sub condition that this condition is negating. /// public Condition Condition { get { return _condition; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields Condition _condition; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // // History: // 10/14/2003 : BrendanM - Created // //--------------------------------------------------------------------------- using System; using MS.Internal.Automation; using System.Windows.Automation; namespace System.Windows.Automation { ////// Condition that checks whether a pattern is currently present for a LogicalElement /// #if (INTERNAL_COMPILE) internal class NotCondition : Condition #else public class NotCondition : Condition #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Constructor to create a condition that negates the specified condition /// /// Condition to negate public NotCondition( Condition condition ) { Misc.ValidateArgumentNonNull( condition, "condition" ); _condition = condition; // DangerousGetHandle() reminds us that the IntPtr we get back could be collected/released/recycled. We're safe here, // because the Conditions are structured in a tree, with the root one (which gets passed to the Uia API) keeping all // others - and their associated data - alive. (Recycling isn't an issue as these are immutable classes.) SetMarshalData(new UiaCoreApi.UiaNotCondition(_condition._safeHandle.DangerousGetHandle())); } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties ////// Returns the sub condition that this condition is negating. /// public Condition Condition { get { return _condition; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields Condition _condition; #endregion Private Fields } } // 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
- EventLogConfiguration.cs
- DataSourceCache.cs
- ReachSerializationUtils.cs
- Simplifier.cs
- TemplateBindingExpression.cs
- OdbcTransaction.cs
- WorkflowServiceBehavior.cs
- ChtmlMobileTextWriter.cs
- SecurityDocument.cs
- QueryResponse.cs
- NetworkInformationException.cs
- VariableQuery.cs
- HostedTransportConfigurationManager.cs
- LinkConverter.cs
- TcpClientSocketManager.cs
- Assert.cs
- ELinqQueryState.cs
- FormatterServicesNoSerializableCheck.cs
- RemoteWebConfigurationHost.cs
- EventRecordWrittenEventArgs.cs
- FirstQueryOperator.cs
- TextBoxView.cs
- DictionaryBase.cs
- XmlNamespaceDeclarationsAttribute.cs
- ResXResourceSet.cs
- TemplateControlCodeDomTreeGenerator.cs
- TrackBar.cs
- FamilyTypeface.cs
- EntityProviderServices.cs
- XmlSchemaValidator.cs
- IdleTimeoutMonitor.cs
- HashHelpers.cs
- SizeIndependentAnimationStorage.cs
- WeakEventManager.cs
- DataGridViewLinkCell.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- DateTimePicker.cs
- WindowsRegion.cs
- SqlNotificationEventArgs.cs
- ValidatorCompatibilityHelper.cs
- HtmlTableRowCollection.cs
- BuildManagerHost.cs
- MonitoringDescriptionAttribute.cs
- WebResourceAttribute.cs
- CodeActivityContext.cs
- HexParser.cs
- PartBasedPackageProperties.cs
- BevelBitmapEffect.cs
- EnumUnknown.cs
- ObjectSecurity.cs
- DisplayMemberTemplateSelector.cs
- WebUtility.cs
- ImageSource.cs
- AnnotationResourceChangedEventArgs.cs
- EdmComplexTypeAttribute.cs
- CompilerWrapper.cs
- PrinterResolution.cs
- TypeUnloadedException.cs
- safelink.cs
- MimeMultiPart.cs
- ConnectionPoolManager.cs
- CrossContextChannel.cs
- HtmlMeta.cs
- PeerNameRecordCollection.cs
- Configuration.cs
- EntryIndex.cs
- RowType.cs
- ModelVisual3D.cs
- WebHttpBinding.cs
- TimeEnumHelper.cs
- VisualStyleInformation.cs
- ConfigurationManagerInternalFactory.cs
- CachedFontFamily.cs
- SiteMapProvider.cs
- Utils.cs
- ObjectSpanRewriter.cs
- HtmlContainerControl.cs
- Empty.cs
- IndicFontClient.cs
- XmlSchemaAnnotated.cs
- OperationResponse.cs
- DataGridPageChangedEventArgs.cs
- AssemblyNameProxy.cs
- KeyValueConfigurationCollection.cs
- ContravarianceAdapter.cs
- ModelPropertyCollectionImpl.cs
- CharKeyFrameCollection.cs
- SafeNativeMethods.cs
- SqlNotificationRequest.cs
- TablePatternIdentifiers.cs
- ICspAsymmetricAlgorithm.cs
- SourceItem.cs
- ChangesetResponse.cs
- DropShadowBitmapEffect.cs
- EntityDataSourceQueryBuilder.cs
- IssuedTokenServiceElement.cs
- CssStyleCollection.cs
- TiffBitmapEncoder.cs
- ConditionChanges.cs
- DeclaredTypeValidator.cs