What is the type of contract not available in WCF?
-
Service Contract
-
Operation Contract
-
Data Contract
-
Message Contract
-
Exception Contract
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.