zoukankan      html  css  js  c++  java
  • WCF Part 2 : Defining contract

    As seen in the previous article, we need an address, binding and contract to complete the WCF ABC. We'll start at the contract.

    A contract is defined explicitly, via a class. You add a [ServiceContract] attribute to the class. All methods you want to expose in your service, you mark as [OperationContract], as methods are called operations in services.

    [ServiceContract]

    public class Hello

    {

        [OperationContract]

        string HelloWorld()

        {

            return "Hello world";

        }

     

        string HelloComputer()

        {

            return "Hello computer";

        }

    }

    The operations are defined explicitly, a Service Orientation tenet. HelloComputer won't be visible by consumers of our service; it isn't marked with an attribute. The HelloWorld operation however is, even though it's private inside the .NET World.

    Interfaces
    We prefer however, to have an interface for our contract and have our actual service implement the interface. That's because

    • Interfaces can extend/inherit other interfaces
    • A single class can implement multiple interfaces
    • You can modify the implementation of a service without breaking the contract
    • You can version your service via old and new interfaces

    It's always best to have an interface and implement it. The attributes also must be specified in the interface.

    [ServiceContract]

    public interface IHello

    {

        [OperationContract]

        string HelloWorld();

     

        string HelloComputer();

    }

     

    public class Hello : IHello

    {

        string IHello.HelloWorld()

        {

            return "Hello world";

        }

     

        string IHello.HelloComputer()

        {

            return "Hello computer";

        }

    }

    In the next article I'll show you how you can host this service. In the future we'll also consume the service and I will try to tell more about contracts and versioning.

  • 相关阅读:
    C++ 顺序表实现
    C++ 第三十四天
    C++ 第三十三天
    机器学习相关- 学习资料收集
    【Debian 8.8】Java 8 安装以及环境变量配置
    算法导论(第三版)练习 1.2-1 ~ 1.1-3
    条款33: 明智地使用内联
    条款32: 尽可能地推迟变量的定义
    条款31: 千万不要返回局部对象的引用,也不要返回函数内部用new初始化的指针的引用
    【Nginx】进程模型
  • 原文地址:https://www.cnblogs.com/malaikuangren/p/2552051.html
Copyright © 2011-2022 走看看