代码之家  ›  专栏  ›  技术社区  ›  edosoft

如何从wsdl中的xs:documentation标签生成注释?

  •  1
  • edosoft  · 技术社区  · 16 年前

    我收到了一个很好的带有xs:documentation标签的wsdl,比如:

    <xs:complexType name="Supplier">
      <xs:annotation>
        <xs:documentation>
          The supplier of the product
        </xs:documentation>
      </xs:annotation>
    

    有没有办法生成 ///<summary> 这个标签?我正在使用visual studio 2008

    2 回复  |  直到 15 年前
        1
  •  1
  •   slf    16 年前

    尝试 the WSDL tool 来自微软,看看这是否有帮助

        2
  •  1
  •   edosoft    16 年前

    我找到了工具 xsd2code 这包括此功能。

    -爱德华