-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
ClientGeneratorBaseSettings
Rico Suter edited this page Sep 26, 2017
·
18 revisions
- Package: NSwag.CodeGeneration
- Settings for: ClientGeneratorBase
- Class: ClientGeneratorBaseSettings.cs
Common settings for all client code generators.
Properties
- ClassName
-
OperationGenerationMode: Defines how to generate operations based on the given operation IDs
MultipleClientsFromPathSegments
to generate one client class per controller.-
MultipleClientsFromOperationId (default): Multiple clients from the Swagger operation ID in the form
{controller}_{action}
- MultipleClientsFromPathSegments: Multiple client classes are generated. The method names in the client classes from path segments (operation name = nth segment, client name = nth - 1 segment).
- SingleClientFromOperationId: The method names in the client class are generated from the given Swagger operation ID
-
MultipleClientsFromOperationId (default): Multiple clients from the Swagger operation ID in the form
- GenerateDtoTypes
- GenerateClientInterfaces
- GenerateClientClasses
Base settings for: