MarkupExtension.ProvideValue(IServiceProvider) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When implemented in a derived class, returns an object that is provided as the value of the target property for this markup extension.
public:
abstract System::Object ^ ProvideValue(IServiceProvider ^ serviceProvider);
public abstract object ProvideValue (IServiceProvider serviceProvider);
abstract member ProvideValue : IServiceProvider -> obj
Public MustOverride Function ProvideValue (serviceProvider As IServiceProvider) As Object
Parameters
- serviceProvider
- IServiceProvider
A service provider helper that can provide services for the markup extension.
Returns
The object value to set on the property where the extension is applied.
Remarks
When a XAML processor processes a type node and member value that is a markup extension, it invokes the ProvideValue method of that markup extension and writes the result into the object graph or serialization stream. The XAML object writer passes service context to each such implementation through the serviceProvider
parameter.
See "Notes to Implementers" section for more information on how to implement ProvideValue in a custom markup extension.
WPF Usage Notes
Important
WPF classes that have specific interactions with markup set operations should not rely on IReceiveMarkupExtension for a .NET Framework 4 implementation. Use XamlSetMarkupExtensionAttribute-attributed callbacks instead.
Notes to Implementers
Common services returned by the default service provider that is typically available to a custom or existing MarkupExtension implementation include the following primary services.
IProvideValueTarget reports the object reference and a property identifier from the context where the markup extension is used
IXamlTypeResolver exposes a service that parallels the general XAML object writing behavior that can provide a Type based on a XAML type name. The name can optionally include a prefix for a mapped XAML namespace.
IXamlSchemaContextProvider exposes the active XAML schema context directly. From the reported XamlSchemaContext, you can obtain XAML schema context information such as how assemblies are mapped for type support, preferred prefix in assemblies, lists of each XamlType in an assembly, and so on.
Other services available for more specialized markup extension scenarios include:
Potentially, implementations of ProvideValue(IServiceProvider) can ignore the serviceProvider
parameter. This is viable for some basic scenarios, where no context at all is required for returning a value.
In typical usage, the .NET Framework XAML Services and the implemented XAML object writers will provide a service provider to all value converter methods that are invoked during XAML processing. However, for robustness, you should provide code paths for null values both for the service provider itself and for any requested service. Null values might occur if your markup extension is applied in a circumstance where the typical service support provided by a XAML processor infrastructure is not available.
For more information on available services from the XAML service provider context and how to use them, see Type Converters and Markup Extensions for XAML.
Implementations that require a certain service to be available in order to produce a useful ProvideValue(IServiceProvider) result are expected to throw exceptions if that service is not available. The recommended exception to throw is InvalidOperationException.
The implementation may also throw exceptions if one of the arguments that the custom markup extension needs in order to provide a value is null, is invalid for its data type, or does not contain a value that the markup extension is capable of processing. The recommended exception to throw is InvalidOperationException.