Multiple choice technology programming languages

What is the type of contract not available in WCF?

  1. Service Contract

  2. Operation Contract

  3. Data Contract

  4. Message Contract

  5. Exception Contract

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

WCF provides four contract types: ServiceContract (defines service interface), OperationContract (marks service operations), DataContract (marks serializable types), and MessageContract (customizes message structure). There is no ExceptionContract - exceptions are handled using FaultException and FaultContract attributes.