/
Andru196
/
NSwagClone
Обзор
Документация
Войти
/
Andru196
/
NSwagClone
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
Аналитика
Безопасность
master
src/NSwag.CodeGeneration.CSharp/Models/CSharpTemplateModelBase.cs
45 строк
2 KB
Marko Lahma
Fix some code formatting issues (#5054)
23 ноя 2024, 21:51
Не верифицирован
23 ноя 2024, 21:51
29eef8f
Код
Авторство
О чём код?
//----------------------------------------------------------------------- // <copyright file="CSharpTemplateModelBase.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 NJsonSchema.CodeGeneration.CSharp; namespace NSwag.CodeGeneration.CSharp.Models { /// <summary>Base class for the CSharp models</summary> public abstract class CSharpTemplateModelBase { private readonly string _controllerName; private readonly CSharpGeneratorBaseSettings _settings; /// <summary>Initializes a new instance of the <see cref="CSharpTemplateModelBase"/> class.</summary> /// <param name="controllerName">Name of the controller.</param> /// <param name="settings">The settings.</param> protected CSharpTemplateModelBase(string controllerName, CSharpGeneratorBaseSettings settings) { _controllerName = controllerName; _settings = settings; } /// <summary>Gets a value indicating whether the C#8 nullable reference types are enabled for this file.</summary> public bool GenerateNullableReferenceTypes => _settings.CSharpGeneratorSettings.GenerateNullableReferenceTypes; /// <summary>Gets a value indicating whether to wrap success responses to allow full response access.</summary> public bool WrapResponses => _settings.WrapResponses; /// <summary>Gets the response class name.</summary> public string ResponseClass => _settings.ResponseClass.Replace("{controller}", _controllerName); /// <summary>Gets a value indicating whether to use System.Text.Json</summary> public bool UseSystemTextJson => _settings.CSharpGeneratorSettings.JsonLibrary == CSharpJsonLibrary.SystemTextJson; /// <summary>Gets the JSON serializer settings type.</summary> public string JsonSerializerSettingsType => _settings.CSharpGeneratorSettings.JsonLibrary == CSharpJsonLibrary.SystemTextJson ? "System.Text.Json.JsonSerializerOptions" : "Newtonsoft.Json.JsonSerializerSettings"; } }