Class MvcBuilderExtensions
- Assembly
- Codebelt.Extensions.AspNetCore.Mvc.Formatters.Text.Yaml.dll
Extension methods for the Microsoft.Extensions.DependencyInjection.IMvcBuilder interface.
public static class MvcBuilderExtensions
- Inheritance
-
ObjectMvcBuilderExtensions
Methods
AddYamlFormatters(IMvcBuilder, Action<YamlFormatterOptions>)
Adds the YAML serializer formatters to MVC.
public static IMvcBuilder AddYamlFormatters(this IMvcBuilder builder, Action<YamlFormatterOptions> setup = null)
Parameters
builder
IMvcBuilderThe Microsoft.Extensions.DependencyInjection.IMvcBuilder.
setup
Action<YamlFormatterOptions>The YamlFormatterOptions which may be configured.
Returns
- IMvcBuilder
A reference to
builder
after the operation has completed.
Exceptions
- System.ArgumentNullException
builder
cannot be null -or-setup
cannot be null.
AddYamlFormattersOptions(IMvcBuilder, Action<YamlFormatterOptions>)
Adds configuration of YamlFormatterOptions for the application.
public static IMvcBuilder AddYamlFormattersOptions(this IMvcBuilder builder, Action<YamlFormatterOptions> setup = null)
Parameters
builder
IMvcBuilderThe Microsoft.Extensions.DependencyInjection.IMvcBuilder.
setup
Action<YamlFormatterOptions>The YamlFormatterOptions which need to be configured.
Returns
- IMvcBuilder
A reference to
builder
after the operation has completed.
Exceptions
- System.ArgumentNullException
builder
cannot be null.