0

「説明」という言葉で、「タイプが必要です」というエラーが表示されます

Imports System.ServiceModel
Imports System.Web
Imports System.IO
Imports System.Runtime.Remoting.Activation
Imports System.Collections.Generic
Imports System.ServiceModel.Web

Namespace SimpleRESTService
<ServiceContract()> _
Public Interface IService

    <Description("Simple echo operation over HTTP GET"), _
     WebGet()> _
    Function EchoWithGet(ByVal s As String) As String

    <Description("Simple echo operation over HTTP POST"), _
     WebInvoke()> _
    Function EchoWithPost(ByVal s As String) As String
End Interface
End Namespace
4

1 に答える 1

0

WCF には「説明」属性はありません。おそらく、次の回避策を使用できます。

http://andrewtokeley.net/archive/2008/10/30/adding-wsdl-documentation-to-your-wcf-services.aspx

于 2013-09-13T15:13:28.390 に答える