Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / UIAutomation / UIAutomationClient / System / Windows / Automation / OrCondition.cs / 1305600 / OrCondition.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // // History: // 10/14/2003 : BrendanM - Created // //--------------------------------------------------------------------------- // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 using System; using MS.Internal.Automation; using System.Windows.Automation; using System.Runtime.InteropServices; namespace System.Windows.Automation { ////// Condition that checks whether a pattern is currently present for a LogicalElement /// #if (INTERNAL_COMPILE) internal class OrCondition : Condition #else public class OrCondition : Condition #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Constructor to create a condition that is true if any of the sub-conditions are true /// /// One or more sub-condition public OrCondition( params Condition [ ] conditions ) { Misc.ValidateArgumentNonNull( conditions, "conditions" ); Misc.ValidateArgument( conditions.Length >= 2, SRID.MustBeAtLeastTwoConditions ); foreach( Condition condition in conditions ) { Misc.ValidateArgumentNonNull( condition, "conditions" ); } // clone array to prevent accidental tampering _conditions = (Condition[])conditions.Clone(); _conditionArrayHandle = SafeConditionMemoryHandle.AllocateConditionArrayHandle(_conditions); // 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.UiaAndOrCondition(UiaCoreApi.ConditionType.Or, _conditionArrayHandle.DangerousGetHandle(), _conditions.Length)); } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Returns an array of the sub conditions for this condition. /// ////// The returned array is a copy; modifying it will not affect the /// state of the condition. /// public Condition [ ] GetConditions() { return (Condition []) _conditions.Clone(); } #endregion Public Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields Condition [ ] _conditions; SafeConditionMemoryHandle _conditionArrayHandle; #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 // //--------------------------------------------------------------------------- // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 using System; using MS.Internal.Automation; using System.Windows.Automation; using System.Runtime.InteropServices; namespace System.Windows.Automation { ////// Condition that checks whether a pattern is currently present for a LogicalElement /// #if (INTERNAL_COMPILE) internal class OrCondition : Condition #else public class OrCondition : Condition #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Constructor to create a condition that is true if any of the sub-conditions are true /// /// One or more sub-condition public OrCondition( params Condition [ ] conditions ) { Misc.ValidateArgumentNonNull( conditions, "conditions" ); Misc.ValidateArgument( conditions.Length >= 2, SRID.MustBeAtLeastTwoConditions ); foreach( Condition condition in conditions ) { Misc.ValidateArgumentNonNull( condition, "conditions" ); } // clone array to prevent accidental tampering _conditions = (Condition[])conditions.Clone(); _conditionArrayHandle = SafeConditionMemoryHandle.AllocateConditionArrayHandle(_conditions); // 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.UiaAndOrCondition(UiaCoreApi.ConditionType.Or, _conditionArrayHandle.DangerousGetHandle(), _conditions.Length)); } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Returns an array of the sub conditions for this condition. /// ////// The returned array is a copy; modifying it will not affect the /// state of the condition. /// public Condition [ ] GetConditions() { return (Condition []) _conditions.Clone(); } #endregion Public Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields Condition [ ] _conditions; SafeConditionMemoryHandle _conditionArrayHandle; #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
- DiscreteKeyFrames.cs
- EventlogProvider.cs
- CompilerScope.cs
- XmlILModule.cs
- DateTimeSerializationSection.cs
- SignatureResourcePool.cs
- ModulesEntry.cs
- FormViewPagerRow.cs
- FullTrustAssembly.cs
- ReflectPropertyDescriptor.cs
- ZipIOExtraFieldPaddingElement.cs
- Decoder.cs
- CodeIdentifiers.cs
- SqlDeflator.cs
- PackageRelationshipCollection.cs
- GraphicsContext.cs
- SQLBinaryStorage.cs
- SectionInput.cs
- ExternalCalls.cs
- CodeGroup.cs
- TabControlCancelEvent.cs
- DEREncoding.cs
- ReflectionTypeLoadException.cs
- GenerateScriptTypeAttribute.cs
- UserControlParser.cs
- TransformValueSerializer.cs
- OpCopier.cs
- HttpApplicationFactory.cs
- BitmapEffectGroup.cs
- EntityClassGenerator.cs
- Win32SafeHandles.cs
- SettingsAttributes.cs
- InfoCardRequestException.cs
- Misc.cs
- RangeBase.cs
- securitycriticaldataClass.cs
- DocumentGridPage.cs
- TcpClientChannel.cs
- EventSourceCreationData.cs
- InputScopeAttribute.cs
- TypeLoadException.cs
- TableLayoutStyleCollection.cs
- IpcServerChannel.cs
- BindingCollection.cs
- SystemUdpStatistics.cs
- BooleanExpr.cs
- CodeExporter.cs
- SQLMoney.cs
- SafeWaitHandle.cs
- DrawingImage.cs
- DataList.cs
- WebPartConnectVerb.cs
- autovalidator.cs
- CellCreator.cs
- NavigationHelper.cs
- XmlDocumentType.cs
- RTLAwareMessageBox.cs
- StateWorkerRequest.cs
- PageTheme.cs
- ColumnProvider.cs
- KeysConverter.cs
- WebHttpSecurityElement.cs
- ZipIOExtraField.cs
- DataSourceControlBuilder.cs
- DesigntimeLicenseContext.cs
- FileDialogPermission.cs
- EventBuilder.cs
- Documentation.cs
- EdmTypeAttribute.cs
- SocketPermission.cs
- DetailsViewPageEventArgs.cs
- SQLDoubleStorage.cs
- PresentationSource.cs
- oledbconnectionstring.cs
- Clause.cs
- UIElement3D.cs
- GridViewCancelEditEventArgs.cs
- UserControlCodeDomTreeGenerator.cs
- GAC.cs
- baseaxisquery.cs
- IItemProperties.cs
- Item.cs
- PreviousTrackingServiceAttribute.cs
- AspCompat.cs
- LowerCaseStringConverter.cs
- BitmapMetadata.cs
- RequestTimeoutManager.cs
- ConnectionPointCookie.cs
- XpsViewerException.cs
- MissingSatelliteAssemblyException.cs
- TransformerInfoCollection.cs
- HttpGetProtocolImporter.cs
- ProgressBarHighlightConverter.cs
- DbParameterHelper.cs
- CachingHintValidation.cs
- LockRecursionException.cs
- XPathNodeIterator.cs
- RangeValuePattern.cs
- InstanceData.cs
- SecurityState.cs