What is service contract
Answers were Sorted based on User's Feedback
Answer / amrita
service contract is an attribute of WCF.it specifies that
which interface will be exposed to the WCF object.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravi
Service contract is the name of the attribute which is
applied to an interface in a WCF service.
Is This Answer Correct ? | 0 Yes | 0 No |
What is CLR and its application.?
What is the difference between hashtable and dictionary?
Can we inherit private class in c#?
How big is a 64 bit integer?
What is difference between dynamic and var in c#?
What is the correct way of declaring an xml namespace?
class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....
From a versioning perspective, what are the drawbacks of extending an interface as opposed to extending a class?
What is an escape sequence?
what is the need of using interface in program ex:if we have a program like this interface1() { void method1(); void method(); } class a1 : interface1 { a1 b = new b(); b.method1(); b.method2(); } so without using interface also we can achieve this then wat is the need to use the interface? plz give me the answer
List some of the basic string operation?
Can non-default constructors be used with single call sao?