Understanding different types of WCF Contracts

Understanding different types of WCF Contracts

29 Jul 2025
Intermediate
172K Views
2 min read
Learn with an interactive course and practical hands-on labs

Free .NET Microservices Online Course - Beginners Start Here

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
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at ScholarHat)

He is a renowned Speaker, Solution Architect, Mentor, and 10-time Microsoft MVP (2016–2025). With expertise in AI/ML, GenAI, System Design, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development, he bridges traditional frameworks with next-gen innovations.

He has trained 1 Lakh+ professionals across the globe, authored 45+ bestselling eBooks and 1000+ technical articles, and mentored 20+ free courses. As a corporate trainer for leading MNCs like IBM, Cognizant, and Dell, Shailendra continues to deliver world-class learning experiences through technology & AI.
Live Training - Book Free Demo
Azure AI Engineer Certification Training
05 Oct
10:00AM - 12:00PM IST
Checkmark Icon
Get Job-Ready
Certification
Azure AI & Gen AI Engineer Certification Training Program
05 Oct
10:00AM - 12:00PM IST
Checkmark Icon
Get Job-Ready
Certification
AWS Developer Certification Training
05 Oct
05:30PM - 07:30PM IST
Checkmark Icon
Get Job-Ready
Certification
Advanced Full-Stack Java Developer Certification Training Course
12 Oct
08:30PM - 10:30PM IST
Checkmark Icon
Get Job-Ready
Certification
ASP.NET Core Certification Training
12 Oct
08:00PM - 10:00PM IST
Checkmark Icon
Get Job-Ready
Certification
Accept cookies & close this