Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / MS / Internal / Automation / ToggleProviderWrapper.cs / 1 / ToggleProviderWrapper.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Toggle pattern provider wrapper for WCP // // History: // 02/04/2004 : MKarr wrote // //--------------------------------------------------------------------------- using System; using System.Windows.Threading; using System.Windows.Media; using System.Windows.Automation; using System.Windows.Automation.Provider; using System.Windows.Automation.Peers; namespace MS.Internal.Automation { // Automation/WCP Wrapper class: Implements that UIAutomation I...Provider // interface, and calls through to a WCP AutomationPeer which implements the corresponding // I...Provider inteface. Marshalls the call from the RPC thread onto the // target AutomationPeer's context. // // Class has two major parts to it: // * Implementation of the I...Provider, which uses Dispatcher.Invoke // to call a private method (lives in second half of the class) via a delegate, // if necessary, packages any params into an object param. Return type of Invoke // must be cast from object to appropriate type. // * private methods - one for each interface entry point - which get called back // on the right context. These call through to the peer that's actually // implenting the I...Provider version of the interface. internal class ToggleProviderWrapper: MarshalByRefObject, IToggleProvider { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors private ToggleProviderWrapper( AutomationPeer peer, IToggleProvider iface ) { _peer = peer; _iface = iface; } #endregion Constructors //------------------------------------------------------ // // Interface IValueProvider // //----------------------------------------------------- #region Interface IToggleProvider public void Toggle( ) { ElementUtil.Invoke( _peer, new DispatcherOperationCallback( ToggleInternal ), null ); } public ToggleState ToggleState { get { return (ToggleState) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( GetToggleState ), null ); } } #endregion Interface IToggleProvider //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ #region Internal Methods internal static object Wrap( AutomationPeer peer, object iface ) { return new ToggleProviderWrapper( peer, (IToggleProvider) iface ); } #endregion Internal Methods //----------------------------------------------------- // // Private Methods // //------------------------------------------------------ #region Private Methods private object ToggleInternal( object unused ) { _iface.Toggle(); return null; } private object GetToggleState( object unused ) { return _iface.ToggleState; } #endregion Private Methods //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- #region Private Fields private AutomationPeer _peer; private IToggleProvider _iface; #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: Toggle pattern provider wrapper for WCP // // History: // 02/04/2004 : MKarr wrote // //--------------------------------------------------------------------------- using System; using System.Windows.Threading; using System.Windows.Media; using System.Windows.Automation; using System.Windows.Automation.Provider; using System.Windows.Automation.Peers; namespace MS.Internal.Automation { // Automation/WCP Wrapper class: Implements that UIAutomation I...Provider // interface, and calls through to a WCP AutomationPeer which implements the corresponding // I...Provider inteface. Marshalls the call from the RPC thread onto the // target AutomationPeer's context. // // Class has two major parts to it: // * Implementation of the I...Provider, which uses Dispatcher.Invoke // to call a private method (lives in second half of the class) via a delegate, // if necessary, packages any params into an object param. Return type of Invoke // must be cast from object to appropriate type. // * private methods - one for each interface entry point - which get called back // on the right context. These call through to the peer that's actually // implenting the I...Provider version of the interface. internal class ToggleProviderWrapper: MarshalByRefObject, IToggleProvider { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors private ToggleProviderWrapper( AutomationPeer peer, IToggleProvider iface ) { _peer = peer; _iface = iface; } #endregion Constructors //------------------------------------------------------ // // Interface IValueProvider // //----------------------------------------------------- #region Interface IToggleProvider public void Toggle( ) { ElementUtil.Invoke( _peer, new DispatcherOperationCallback( ToggleInternal ), null ); } public ToggleState ToggleState { get { return (ToggleState) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( GetToggleState ), null ); } } #endregion Interface IToggleProvider //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ #region Internal Methods internal static object Wrap( AutomationPeer peer, object iface ) { return new ToggleProviderWrapper( peer, (IToggleProvider) iface ); } #endregion Internal Methods //----------------------------------------------------- // // Private Methods // //------------------------------------------------------ #region Private Methods private object ToggleInternal( object unused ) { _iface.Toggle(); return null; } private object GetToggleState( object unused ) { return _iface.ToggleState; } #endregion Private Methods //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- #region Private Fields private AutomationPeer _peer; private IToggleProvider _iface; #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
- PathGradientBrush.cs
- TableSectionStyle.cs
- NegotiateStream.cs
- LabelAutomationPeer.cs
- MSHTMLHostUtil.cs
- SchemaImporterExtensionsSection.cs
- StrongNameMembershipCondition.cs
- FixedBufferAttribute.cs
- WindowsRichEdit.cs
- ChannelDispatcherBase.cs
- MetadataItem_Static.cs
- ApplicationContext.cs
- LookupBindingPropertiesAttribute.cs
- FilterQuery.cs
- SelectionItemProviderWrapper.cs
- CharacterString.cs
- ProviderIncompatibleException.cs
- WebPartsSection.cs
- CheckBoxAutomationPeer.cs
- CompressStream.cs
- ChineseLunisolarCalendar.cs
- XmlAnyAttributeAttribute.cs
- SortDescription.cs
- ReaderWriterLockWrapper.cs
- GeneralTransformGroup.cs
- JulianCalendar.cs
- TemplateFactory.cs
- TableRow.cs
- FamilyTypeface.cs
- SqlMethodCallConverter.cs
- DesignTimeTemplateParser.cs
- SafeHandles.cs
- RegexCompilationInfo.cs
- TitleStyle.cs
- AnimationLayer.cs
- SqlConnectionString.cs
- SqlUtil.cs
- DocumentSequenceHighlightLayer.cs
- OverrideMode.cs
- DynamicActivityXamlReader.cs
- VirtualPathUtility.cs
- Permission.cs
- ImageBrush.cs
- XmlExceptionHelper.cs
- FrameworkElement.cs
- SequenceRange.cs
- BrowsableAttribute.cs
- x509utils.cs
- DataGridCell.cs
- CanonicalizationDriver.cs
- SHA1.cs
- _BaseOverlappedAsyncResult.cs
- ParallelTimeline.cs
- IDataContractSurrogate.cs
- WebAdminConfigurationHelper.cs
- Freezable.cs
- HttpListener.cs
- HwndProxyElementProvider.cs
- BrowserCapabilitiesFactory.cs
- InputProcessorProfiles.cs
- ImageBrush.cs
- SharedUtils.cs
- ReflectPropertyDescriptor.cs
- CLSCompliantAttribute.cs
- ObfuscateAssemblyAttribute.cs
- ToolBarOverflowPanel.cs
- Expr.cs
- PolicyReader.cs
- PartialCachingControl.cs
- Expander.cs
- CompletedAsyncResult.cs
- __FastResourceComparer.cs
- HtmlInputReset.cs
- StorageTypeMapping.cs
- ReflectPropertyDescriptor.cs
- CellLabel.cs
- Triangle.cs
- PageHandlerFactory.cs
- X509AsymmetricSecurityKey.cs
- EventManager.cs
- CqlLexerHelpers.cs
- grammarelement.cs
- DBParameter.cs
- XPathEmptyIterator.cs
- RedistVersionInfo.cs
- Border.cs
- ColumnResult.cs
- HttpCacheVary.cs
- OperandQuery.cs
- EncryptedData.cs
- SoapProtocolReflector.cs
- CollectionConverter.cs
- RadioButton.cs
- StateMachineWorkflow.cs
- DocumentReference.cs
- CustomErrorsSection.cs
- XmlWriter.cs
- WindowsGraphics2.cs
- DynamicDataExtensions.cs
- InternalUserCancelledException.cs