Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / ProvideValueServiceProvider.cs / 1305600 / 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, 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); } // 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(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, 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); } // 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(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
- Win32KeyboardDevice.cs
- SkipStoryboardToFill.cs
- ExpressionNormalizer.cs
- BadImageFormatException.cs
- Property.cs
- AuthenticationManager.cs
- ChangeTracker.cs
- SmtpMail.cs
- COAUTHIDENTITY.cs
- CollectionDataContractAttribute.cs
- BuildProvidersCompiler.cs
- TypeDelegator.cs
- OrderedDictionary.cs
- Effect.cs
- TransformCryptoHandle.cs
- PropertyItem.cs
- DispatcherObject.cs
- StorageFunctionMapping.cs
- ProfileProvider.cs
- PropertyFilterAttribute.cs
- Transform.cs
- FileDialog_Vista.cs
- TimeEnumHelper.cs
- PropertyChangingEventArgs.cs
- ConsoleCancelEventArgs.cs
- SafeMILHandle.cs
- DbReferenceCollection.cs
- StaticResourceExtension.cs
- PermissionSetEnumerator.cs
- CompensatableTransactionScopeActivityDesigner.cs
- ExtentKey.cs
- Point3DConverter.cs
- Timer.cs
- SplitterCancelEvent.cs
- ElementsClipboardData.cs
- CodeIndexerExpression.cs
- HitTestFilterBehavior.cs
- ModelEditingScope.cs
- BuildDependencySet.cs
- StrongTypingException.cs
- DataRecordObjectView.cs
- OperationCanceledException.cs
- CookieProtection.cs
- SchemaEntity.cs
- XDeferredAxisSource.cs
- TrackingServices.cs
- TextServicesCompartmentContext.cs
- HashHelper.cs
- SoapObjectReader.cs
- AmbientProperties.cs
- SliderAutomationPeer.cs
- ViewStateException.cs
- DbInsertCommandTree.cs
- Point3DAnimationBase.cs
- BaseDataBoundControlDesigner.cs
- RangeBase.cs
- ModuleBuilder.cs
- MLangCodePageEncoding.cs
- FileEnumerator.cs
- ActiveXHelper.cs
- LocalServiceSecuritySettings.cs
- DBSqlParserColumnCollection.cs
- EventInfo.cs
- ClrProviderManifest.cs
- ComponentResourceManager.cs
- AttributeProviderAttribute.cs
- EndpointAddress.cs
- ToolstripProfessionalRenderer.cs
- ControlValuePropertyAttribute.cs
- DataGridViewCellFormattingEventArgs.cs
- WebPartVerb.cs
- HttpCacheParams.cs
- CustomExpressionEventArgs.cs
- BinaryFormatterSinks.cs
- _NestedMultipleAsyncResult.cs
- DataServiceEntityAttribute.cs
- PassportAuthenticationEventArgs.cs
- WorkflowViewElement.cs
- SortAction.cs
- BamlStream.cs
- DescriptionAttribute.cs
- Base64Encoder.cs
- FamilyTypefaceCollection.cs
- LayoutEvent.cs
- ExtensionDataObject.cs
- MimeTypePropertyAttribute.cs
- FakeModelItemImpl.cs
- RuleSettingsCollection.cs
- WindowsListViewItem.cs
- Style.cs
- WindowsFormsSectionHandler.cs
- PngBitmapEncoder.cs
- MiniMapControl.xaml.cs
- FixedSOMTable.cs
- SessionSwitchEventArgs.cs
- QilStrConcat.cs
- HierarchicalDataSourceControl.cs
- DesignerListAdapter.cs
- TextParagraphView.cs
- ControlBindingsCollection.cs