Please enable Javascript to correctly display the contents on Dot Net Tricks!

Understanding different types of WCF Contracts

Posted By : Shailendra Chauhan, 28 Sep 2013
Updated On : 28 Sep 2013
Total Views : 75,834   
Support : All WCF
 

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.

 
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
BROWSE BY CATEGORY
 
SUBSCRIBE TO LATEST NEWS
 
LIKE US ON FACEBOOK
 
+