ThemeDictionaryExtension.ProvideValue(IServiceProvider) Method

Definition

Returns an object that should be set on the property where this extension is applied. For ThemeDictionaryExtension, this is the URI value for a particular theme dictionary extension.

public:
 override System::Object ^ ProvideValue(IServiceProvider ^ serviceProvider);
public override object ProvideValue (IServiceProvider serviceProvider);
override this.ProvideValue : IServiceProvider -> obj
Public Overrides Function ProvideValue (serviceProvider As IServiceProvider) As Object

Parameters

serviceProvider
IServiceProvider

An object that can provide services for the markup extension. This service is expected to provide results for IXamlTypeResolver.

Returns

The object value to set on the property where the extension is applied.

Exceptions

The AssemblyName property is null. You must set this value during construction or before using the ProvideValue(IServiceProvider) method.

-or-

serviceProvider is null or does not provide a service for IXamlTypeResolver.

-or-

serviceProvider specifies a target type that does not match Source.

Remarks

This method supports WPF XAML processor implementation, and is not intended to be called directly. The XAML processor implementation uses this method for proper handling of ThemeResourceDictionary extension values during object creation.

This implementation relies on services based on the passed serviceProvider. It must not be null. The serviceProvider object is expected to implement IXamlTypeResolver.

Applies to