Namespace ToSic.Lib.Coding
Structs
- NoParamOrder
Special placeholder to indicate that all parameters following this should be named. It is really important that all parameters following this are named, since the API won't guarantee the order of the parameter names.
Example: This signature:
...Save(string name, NoParamOrder noParamOrder = default, string title = title, string description = default)
allows:Save("MyName", title: "MyTitle")
Save("MyName", description: "MyDescription")
- Save("MyName") - without additional parameters