我正在整理一个Web API,该Web API需要匹配外部源XML格式,并希望在swagger输出中重命名Data Type对象。
在类的成员上运行良好,但我想知道是否也可以覆盖类名。
例子:
[DataContract(Name="OVERRIDECLASSNAME")]
public class TestItem
{
[DataMember(Name="OVERRIDETHIS")]
public string toOverride {get; set;}
}
在生成的输出中,我最终看到
模型:
TestItem {
OVERRIDETHIS (string, optional)
}
我希望看到
OVERRIDECLASSNAME {
OVERRIDETHIS(字符串,可选)
}
这可能吗?
谢谢,
最佳答案
我遇到了同样的问题,我想我现在就解决了。
首先在Swagger Configuration中添加SchemaId(从5.2.2版开始,请参见https://github.com/domaindrivendev/Swashbuckle/issues/457):
GlobalConfiguration.Configuration
.EnableSwagger(c =>
{
c.SchemaId(schemaIdStrategy);
[...]
}
然后添加此方法:
private static string schemaIdStrategy(Type currentClass)
{
string returnedValue = currentClass.Name;
foreach (var customAttributeData in currentClass.CustomAttributes)
{
if (customAttributeData.AttributeType.Name.ToLower() == "datacontractattribute")
{
foreach (var argument in customAttributeData.NamedArguments)
{
if (argument.MemberName.ToLower() == "name")
{
returnedValue = argument.TypedValue.Value.ToString();
}
}
}
}
return returnedValue;
}
希望能帮助到你。
关于asp.net - Swashbuckle重命名模型中的数据类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31999967/