Apply custom binders
class MyComplexTypeBinder : ISettingsBinder<MyComplexType>
{
public MyComplexType Bind([CanBeNull] ISettingsNode node)
{
...
}
}class MySettings
{
[BindBy(typeof(MyComplexTypeBinder))]
public MyComplexType ComplexProperty { get; }
}[BindBy(typeof(MyComplexTypeBinder))]
class MyComplexType
{
}Related pages
Binding nodes to modelsBindersLast updated
Was this helpful?