Understanding different types of WCF Contracts

Understanding different types of WCF Contracts

26 Aug 2022
Intermediate
167K Views
2 min read

WCF contract specify the service and its operations. WCF has five types of contracts: service contract, operation contract, data contract, message contract and fault contract.

  1. Service Contract

    A service contract defines the operations which are exposed by the service to the outside world. A service contract is the interface of the WCF service and it tells the outside world what the service can do. It may have service-level settings, such as the name of the service and namespace for the service.

    [ServiceContract]
    interface IMyContract
    {
     [OperationContract]
     string MyMethod();
    }
    
    class MyService : IMyContract
    {
     public string MyMethod()
     {
     return "Hello World";
     }
    }
    
  2. Operation Contract

    An operation contract is defined within a service contract. It defines the parameters and return type of an operation. An operation contract can also defines operation-level settings, like as the transaction flow of the op-eration, the directions of the operation (one-way, two-way, or both ways), and fault contract of the operation.

     [ServiceContract]
     interface IMyContract
     {
     [FaultContract(typeof(MyFaultContract))]
     [OperationContract]
     string MyMethod();
     }
    
  3. Data Contract

    A data contract defines the data type of the information that will be exchange be-tween the client and the service. A data contract can be used by an operation contract as a parameter or return type, or it can be used by a message contract to define elements.

    [DataContract]
    class Person
    {
     [DataMember]
     public string ID;
     [DataMember]
     public string Name;
    }
     
    [ServiceContract]
    interface IMyContract
    {
     [OperationContract]
     Person GetPerson(int ID);
    }
    
  4. Message Contract

    When an operation contract required to pass a message as a parameter or return value as a message, the type of this message will be defined as message contract. A message contract defines the elements of the message (like as Message Header, Message Body), as well as the message-related settings, such as the level of message security.

    Message contracts give you complete control over the content of the SOAP header, as well as the structure of the SOAP body.

    [ServiceContract]
    public interface IRentalService
    {
     [OperationContract]
     double CalPrice(PriceCalculate request);
    }
    
    [MessageContract]
    public class PriceCalculate
    {
     [MessageHeader]
     public MyHeader SoapHeader { get; set; }
     [MessageBodyMember]
     public PriceCal PriceCalculation { get; set; }
    }
    
    [DataContract]
    public class MyHeader
    {
     [DataMember]
     public string UserID { get; set; }
    }
    
    [DataContract]
    public class PriceCal
    {
     [DataMember]
     public DateTime PickupDateTime { get; set; }
     [DataMember]
     public DateTime ReturnDateTime { get; set; }
     [DataMember]
     public string PickupLocation { get; set; }
     [DataMember]
     public string ReturnLocation { get; set; }
     }
     
  5. Fault Contract

    A fault contract defines errors raised by the service, and how the service handles and propagates errors to its clients. An operation contract can have zero or more fault contracts associated with it.

    [ServiceContract]
    interface IMyContract
    {
     [FaultContract(typeof(MyFaultContract1))]
     [FaultContract(typeof(MyFaultContract2))]
     [OperationContract]
     string MyMethod();
     
     [OperationContract]
     string MyShow();
     }
    
What do you think?

I hope you will enjoy the tips while programming with WCF. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

Share Article
Batches Schedule
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan is the Founder and CEO at ScholarHat by DotNetTricks which is a brand when it comes to e-Learning. He provides training and consultation over an array of technologies like Cloud, .NET, Angular, React, Node, Microservices, Containers and Mobile Apps development. He has been awarded Microsoft MVP 8th time in a row (2016-2023). He has changed many lives with his writings and unique training programs. He has a number of most sought-after books to his name which has helped job aspirants in cracking tough interviews with ease.
Self-paced Membership
  • 22+ Video Courses
  • 750+ Hands-On Labs
  • 300+ Quick Notes
  • 55+ Skill Tests
  • 45+ Interview Q&A Courses
  • 10+ Real-world Projects
  • Career Coaching Sessions
  • Email Support
Upto 60% OFF
Know More
Accept cookies & close this