Understanding different types of WCF Contracts

Understanding different types of WCF Contracts

26 Aug 2022
Intermediate
169K Views
2 min read
Learn with an interactive course and practical hands-on labs

.NET Microservices Course

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 by DotNetTricks)

Shailendra Chauhan, Founder and CEO of ScholarHat by DotNetTricks, is a renowned expert in System Design, Software Architecture, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development. His skill set extends into emerging fields like Data Science, Python, Azure AI/ML, and Generative AI, making him a well-rounded expert who bridges traditional development frameworks with cutting-edge advancements. Recognized as a Microsoft Most Valuable Professional (MVP) for an impressive 9 consecutive years (2016–2024), he has consistently demonstrated excellence in delivering impactful solutions and inspiring learners.

Shailendra’s unique, hands-on training programs and bestselling books have empowered thousands of professionals to excel in their careers and crack tough interviews. A visionary leader, he continues to revolutionize technology education with his innovative approach.
Accept cookies & close this