(asmx)Webサービスで使用されるパラメータの説明を作成できますか。 Description-プロパティでwebmethodの説明を設定できます。 しかし、上記の例では例えば与えられたパラメータWebserviceパラメータの説明
[WebMethod(Description = @"Get all approved friends <br />
where rownum >= StartPage * count AND rownum < (StartPage+1) * count")]
public Friend[] GetFriendsPaged(int startPage, int count){...}
のために、Webサービスの記述を作成するためのパラメータに属性を追加することも可能であるスタートページが0-であることを、私は、ドキュメントを追加したいですベース。
ありがとうございます。