/
Andru196
/
NSwagClone
Обзор
Документация
Войти
/
Andru196
/
NSwagClone
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
Аналитика
Безопасность
master
src/NSwag.CodeGeneration.CSharp/CSharpControllerGeneratorSettings.cs
68 строк
3 KB
Rico Suter
Fix compile error
18 янв 2020, 01:42
Не верифицирован
18 янв 2020, 01:42
8c0bf76
Код
Авторство
О чём код?
//----------------------------------------------------------------------- // <copyright file="SwaggerToCSharpControllerGeneratorSettings.cs" company="NSwag"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NSwag/blob/master/LICENSE.md</license> // <author>Rico Suter, mail@rsuter.com</author> //----------------------------------------------------------------------- using NSwag.CodeGeneration.CSharp.Models; namespace NSwag.CodeGeneration.CSharp { // TODO: Rename to SwaggerToCSharpControllerGeneratorSettings? /// <summary>Settings for the <see cref="CSharpControllerGenerator"/>.</summary> public class CSharpControllerGeneratorSettings : CSharpGeneratorBaseSettings { /// <summary>Initializes a new instance of the <see cref="CSharpControllerGeneratorSettings"/> class.</summary> public CSharpControllerGeneratorSettings() { ClassName = "{controller}"; CSharpGeneratorSettings.ArrayType = "System.Collections.Generic.List"; CSharpGeneratorSettings.ArrayInstanceType = "System.Collections.Generic.List"; ControllerStyle = CSharpControllerStyle.Partial; ControllerTarget = CSharpControllerTarget.AspNetCore; RouteNamingStrategy = CSharpControllerRouteNamingStrategy.None; GenerateModelValidationAttributes = false; UseCancellationToken = false; } /// <summary>Returns the route name for a controller method.</summary> /// <param name="operation">Swagger operation</param> /// <returns>Route name.</returns> public string GetRouteName(OpenApiOperation operation) { if (RouteNamingStrategy == CSharpControllerRouteNamingStrategy.OperationId) { return operation.OperationId; } return null; } /// <summary>Gets or sets the full name of the base class.</summary> public string ControllerBaseClass { get; set; } /// <summary>Gets or sets the controller generation style (partial, abstract; default: partial).</summary> public CSharpControllerStyle ControllerStyle { get; set; } /// <summary>Gets or sets the controller target framework.</summary> public CSharpControllerTarget ControllerTarget { get; set; } /// <summary>Gets or sets a value indicating whether to allow adding cancellation token </summary> public bool UseCancellationToken { get; set; } /// <summary>Gets or sets the strategy for naming routes (default: CSharpRouteNamingStrategy.None).</summary> public CSharpControllerRouteNamingStrategy RouteNamingStrategy { get; set; } /// <summary>Gets or sets a value indicating whether to add model validation attributes.</summary> public bool GenerateModelValidationAttributes { get; set; } /// <summary>Gets or sets a value indicating whether ASP.Net Core (2.1) ActionResult type is used (default: false).</summary> public bool UseActionResultType { get; set; } /// <summary>Gets or sets the base path on which the API is served, which is relative to the Host.</summary> public string BasePath { get; set; } } }