2012-12-18 53 views
0

在Visual Studio 2010中是否有一個設置會爲生成的代理代碼生成註釋?添加Web引用讀取和生成文檔

舉例來說,我有一個SOAP Web服務執行以下操作:

<s:complexContent> -<s:extension base="s0:Criteria"> -<s:sequence> -<s:element name="GroupId" type="s:long" minOccurs="0"> -<s:annotation> <s:documentation>Unique group identifier. Can be used to get a specific group and/or a list of users for a group</s:documentation> </s:annotation> </s:element> -<s:element name="GroupName" type="s:string" minOccurs="0"> -<s:annotation> <s:documentation>Name of the group to find</s:documentation> </s:annotation> </s:element> </s:sequence> </s:extension> </s:complexContent> </s:complexType> 

這包含註釋文檔元素,但它們的內容是沒有得到進口或在Visual Studio 2010

使用

回答

0

ASMX Web服務沒有此功能。

另請注意,ASMX是一項傳統技術,所有新開發應使用WCF。