Extending the plugin
Learn how to extend the plugin by adding a custom property value extractor.
Add a custom property value extractor
// IUmbracoBuilder builder;
builder.SingleValuePropertyExtractors()
.Append<DefaultSingleValuePropertyExtractor>()
.Append<DefaultGoogleAvailabilityValueExtractor>()
.Append<DefaultMediaPickerPropertyValueExtractor>();
builder.MultipleValuePropertyExtractors()
.Append<DefaultMultipleMediaPickerPropertyValueExtractor>();
Last updated
Was this helpful?