Table of Contents
These v19 docs are archived 🔒. Go to the latest docs home or try if this exact page is available in the latest docs.

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:

  1. Save("MyName", title: "MyTitle")
  2. Save("MyName", description: "MyDescription")
  3. Save("MyName") - without additional parameters

See Convention: Named Parameters.