What is DataContract and ServiceContract?Explain
Answer Posted / vijay krishna
Data represented by creating DataContract which expose the
data which will be transefered /consumend from the serive
to its clients.
**Operations which is the functions provided by this
service.
To write an operation on WCF,you have to write it as an
interface,This interface contains the "Signature" of the
methods tagged by ServiceContract attribute,and all methods
signature will be impelemtned on this interface tagged with
OperationContract attribute.
and to implement these serivce contract you have to create
a class which implement the interface and the actual
implementation will be on that class.
Code Below show How to create a Service Contract:
[ServiceContract]
Public Interface IEmpOperations
{
[OperationContract]
Decimal Get EmpSal(int EmpId);
}
Class MyEmp: IEmpOperations
{
Decimal Get EmpSal()
{
// Implementation of this method.
}
}
Hope now you can differentiate between Data
Contract,Service Contract and OperationContract.
| Is This Answer Correct ? | 22 Yes | 6 No |
Post New Answer View All Answers
What is callback mode in wcf? Explain.
Define the term policy binding?
Difference between wcf and web services?
Can you explain address in detail?
Which specifications does wcf follow?
What are the types of binding available in wcf?
explain duplex ws binding? : Wcf data services
What is "service contracts" in wcf?
what are the main components of WCF?
What is "know types" in wcf?
What are different bindings supported by wcf?
What are the types of messaging patterns?
Explain data contracts?
In wcf, which contract is used to document the errors occurred in the service to client?
In wcf which bindings supports the reliable session?