-
Notifications
You must be signed in to change notification settings - Fork 2
OutParameters
Adrian Ehrsam edited this page Aug 19, 2020
·
1 revision
Out Parameters are supported, however in case you plan to use those, it is recommended to set the AlwaysWrapJson Config to true:
services.AddGenericBackend()
.ConfigureMiddleware(m =>
{
m.AlwaysWrapJson = true; // Recommended
})
This makes sure you do not break clients when adding an Out Parameter.