gpt4 book ai didi

export - 数据契约序列化器。导出元数据。类型注释

转载 作者:行者123 更新时间:2023-12-01 01:21:16 25 4
gpt4 key购买 nike

请告诉我是否可以以某种方式为生成的 xsd 文件中的类型/元素自动生成注释?


/// <summary>
/// Comment for myclass
/// </summary>
[DataContract]
public class myclass
{
}



<xs:complexType name="myclass">
<xs:annotation>
<xs:documentation>
Comment for myclass
</xs:documentation>
</xs:annotation>
</xs:complexType>


或直接元素:

<xs:element name="myclass" type="tns:myclass" >
<xs:annotation>
<xs:documentation>
Comment for myclass
</xs:documentation>
</xs:annotation>

</xs:element>

最佳答案

你不能。 XML 注释不会编译到您的代码中。所以 svcutil 只是没有这些信息。

但是,根据您的实际目标,您可以尝试使用说明更改服务的 WSDL 和 XSD from this article .

关于export - 数据契约序列化器。导出元数据。类型注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9075783/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com