Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Markup / ProvideValueServiceProvider.cs / 1 / ProvideValueServiceProvider.cs
/****************************************************************************\ * * File: ProvideValueServiceProvider.cs * * ServiceProvider class that is passed into MarkupExtensions.ProvideValue method * that understands the ParserContext. * * Copyright (C) 2006 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.Windows; using System.Windows.Media; using System.Diagnostics; namespace System.Windows.Markup { ////// Base class for all Xaml markup extensions. /// internal class ProvideValueServiceProvider : IServiceProvider, IProvideValueTarget, IBamlReader, IXamlTypeResolver, IUriContext, IFreezeFreezables { // Construction internal ProvideValueServiceProvider(ParserContext context) { _context = context; } internal ProvideValueServiceProvider() { } // Set the TargetObject/Property (for use by IProvideValueTarget). internal void SetData(object targetObject, object targetProperty) { _targetObject = targetObject; _targetProperty = targetProperty; } // Clear the TargetObject/Property (after a call to ProvideValue) internal void ClearData() { _targetObject = _targetProperty = null; } // IXamlTypeResolver implementation Type IXamlTypeResolver.Resolve(string qualifiedTypeName) // E.g. foo:Class { return _context.XamlTypeMapper.GetTypeFromBaseString(qualifiedTypeName, _context, true); } // IBamlReader implementation BamlRecordReader IBamlReader.GetBamlReader() { return _context.BamlReader; } // IProvideValueTarget implementation object IProvideValueTarget.TargetObject { get { return _targetObject; } } object IProvideValueTarget.TargetProperty { get { return _targetProperty; } } // IUriContext implementation Uri IUriContext.BaseUri { get { return _context.BaseUri; } set { throw new NotSupportedException(SR.Get(SRID.ParserProvideValueCantSetUri)); } } bool IFreezeFreezables.FreezeFreezables { get { return _context.FreezeFreezables; } } bool IFreezeFreezables.TryFreeze(string value, Freezable freezable) { return _context.TryCacheFreezable(value, freezable); } Freezable IFreezeFreezables.TryGetFreezable(string value) { return _context.TryGetFreezable(value); } // IServiceProvider implementation (this is the way to get to the // above interface implementations). public object GetService(Type service) { // IProvideValueTarget is the only implementation that // doesn't need the ParserContext if( service == typeof(IProvideValueTarget)) { return this as IProvideValueTarget; } if( _context != null ) { if( service == typeof(IXamlTypeResolver)) { return this as IXamlTypeResolver; } else if( service == typeof(IUriContext)) { return this as IUriContext; } else if( service == typeof(IBamlReader)) { return this as IBamlReader; } else if (service == typeof(IFreezeFreezables)) { return this as IFreezeFreezables; } } return null; } // Data private ParserContext _context = null; private object _targetObject = null; private object _targetProperty = null; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /****************************************************************************\ * * File: ProvideValueServiceProvider.cs * * ServiceProvider class that is passed into MarkupExtensions.ProvideValue method * that understands the ParserContext. * * Copyright (C) 2006 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.Windows; using System.Windows.Media; using System.Diagnostics; namespace System.Windows.Markup { ////// Base class for all Xaml markup extensions. /// internal class ProvideValueServiceProvider : IServiceProvider, IProvideValueTarget, IBamlReader, IXamlTypeResolver, IUriContext, IFreezeFreezables { // Construction internal ProvideValueServiceProvider(ParserContext context) { _context = context; } internal ProvideValueServiceProvider() { } // Set the TargetObject/Property (for use by IProvideValueTarget). internal void SetData(object targetObject, object targetProperty) { _targetObject = targetObject; _targetProperty = targetProperty; } // Clear the TargetObject/Property (after a call to ProvideValue) internal void ClearData() { _targetObject = _targetProperty = null; } // IXamlTypeResolver implementation Type IXamlTypeResolver.Resolve(string qualifiedTypeName) // E.g. foo:Class { return _context.XamlTypeMapper.GetTypeFromBaseString(qualifiedTypeName, _context, true); } // IBamlReader implementation BamlRecordReader IBamlReader.GetBamlReader() { return _context.BamlReader; } // IProvideValueTarget implementation object IProvideValueTarget.TargetObject { get { return _targetObject; } } object IProvideValueTarget.TargetProperty { get { return _targetProperty; } } // IUriContext implementation Uri IUriContext.BaseUri { get { return _context.BaseUri; } set { throw new NotSupportedException(SR.Get(SRID.ParserProvideValueCantSetUri)); } } bool IFreezeFreezables.FreezeFreezables { get { return _context.FreezeFreezables; } } bool IFreezeFreezables.TryFreeze(string value, Freezable freezable) { return _context.TryCacheFreezable(value, freezable); } Freezable IFreezeFreezables.TryGetFreezable(string value) { return _context.TryGetFreezable(value); } // IServiceProvider implementation (this is the way to get to the // above interface implementations). public object GetService(Type service) { // IProvideValueTarget is the only implementation that // doesn't need the ParserContext if( service == typeof(IProvideValueTarget)) { return this as IProvideValueTarget; } if( _context != null ) { if( service == typeof(IXamlTypeResolver)) { return this as IXamlTypeResolver; } else if( service == typeof(IUriContext)) { return this as IUriContext; } else if( service == typeof(IBamlReader)) { return this as IBamlReader; } else if (service == typeof(IFreezeFreezables)) { return this as IFreezeFreezables; } } return null; } // Data private ParserContext _context = null; private object _targetObject = null; private object _targetProperty = null; } } // 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
- SerializableTypeCodeDomSerializer.cs
- ColorKeyFrameCollection.cs
- TableCell.cs
- StopRoutingHandler.cs
- _LocalDataStoreMgr.cs
- AssemblyInfo.cs
- VectorValueSerializer.cs
- NonVisualControlAttribute.cs
- FastEncoder.cs
- HorizontalAlignConverter.cs
- DrawListViewSubItemEventArgs.cs
- StructuredType.cs
- DefaultValidator.cs
- Baml2006KnownTypes.cs
- InvalidPropValue.cs
- _SpnDictionary.cs
- Set.cs
- DataControlHelper.cs
- FactoryGenerator.cs
- TimeEnumHelper.cs
- _FixedSizeReader.cs
- TaskFactory.cs
- FixedSOMPageElement.cs
- DesignTimeTemplateParser.cs
- UserControlAutomationPeer.cs
- GroupItem.cs
- HandledMouseEvent.cs
- CompilationSection.cs
- InvokeFunc.cs
- AuthenticationException.cs
- ComplexLine.cs
- Mappings.cs
- EdmValidator.cs
- AVElementHelper.cs
- EntityDesignerBuildProvider.cs
- PenContexts.cs
- ServicePoint.cs
- ExpressionContext.cs
- ComplusEndpointConfigContainer.cs
- PrintController.cs
- SqlDataSourceCommandEventArgs.cs
- RadioButtonStandardAdapter.cs
- ClientFormsAuthenticationCredentials.cs
- ProtocolsConfigurationHandler.cs
- DataMemberFieldConverter.cs
- CookielessData.cs
- FrameworkElement.cs
- DbConnectionPoolGroup.cs
- FreezableCollection.cs
- _StreamFramer.cs
- XPathNavigatorKeyComparer.cs
- Translator.cs
- PropertyOrder.cs
- PointKeyFrameCollection.cs
- EntityContainerRelationshipSetEnd.cs
- UpDownEvent.cs
- XmlILOptimizerVisitor.cs
- HtmlObjectListAdapter.cs
- CombinedGeometry.cs
- ReaderWriterLock.cs
- DesignerTransactionCloseEvent.cs
- C14NUtil.cs
- DesignerActionUIService.cs
- XmlNodeChangedEventArgs.cs
- OutgoingWebResponseContext.cs
- TextBox.cs
- FromRequest.cs
- SqlDelegatedTransaction.cs
- EntitySqlQueryBuilder.cs
- FrameworkElement.cs
- DataGridViewCellStateChangedEventArgs.cs
- EventMappingSettings.cs
- TextAnchor.cs
- TextOutput.cs
- TextServicesDisplayAttribute.cs
- RelationHandler.cs
- WmlImageAdapter.cs
- SemaphoreFullException.cs
- SpnEndpointIdentity.cs
- StackBuilderSink.cs
- Panel.cs
- dataobject.cs
- GeometryConverter.cs
- VirtualizingPanel.cs
- ContextMenuAutomationPeer.cs
- CategoryEditor.cs
- SequenceNumber.cs
- XmlChildEnumerator.cs
- ListItemParagraph.cs
- AuthenticatedStream.cs
- WrapPanel.cs
- DateTimeOffset.cs
- SingleObjectCollection.cs
- SessionPageStateSection.cs
- ThreadStateException.cs
- FunctionOverloadResolver.cs
- PagePropertiesChangingEventArgs.cs
- Error.cs
- FormClosingEvent.cs
- EntityException.cs