0

この行wcfServiceObject:thisはエラーになりますcannot convert from ... to ...

return new[] { new ServiceReplicaListener((context) =>
    new WcfCommunicationListener<IShoppingCartService>(
        wcfServiceObject:this,
        serviceContext:context,
        //
        // The name of the endpoint configured in the ServiceManifest under the Endpoints section
        // that identifies the endpoint that the WCF ServiceHost should listen on.
        //
        endpointResourceName: "WcfServiceEndpoint",

        //
        // Populate the binding information that you want the service to use.
        //
        listenerBinding: WcfUtility.CreateTcpListenerBinding()
    )
)};

この問題を解決するにはどうすればよいですか?

コード: https://azure.microsoft.com/nl-nl/documentation/articles/service-fabric-reliable-services-communication-wcf/

4

1 に答える 1

0

interface私は自分のサービスに を実装する必要があると考えました。以下の a の例のようにShoppingCartService:

internal sealed class ShoppingCartService : StatefulService, IShoppingCartService
{
    ...
}

この特定のケースでは、 のIShoppingCartServiceインターフェイスを実装する必要がありましたShoppingCartService

于 2016-10-01T08:36:46.463 に答える