Click here for all SQL Server Interview Questions
Click here for all ASP.NET Interview Questions
Click here for all C# Interview Questions
Click here for Written Test or practical ASP.NET Interview Questions asked in MNC's
Basic WCF Interview Questions
Contracts - Part 1
Contracts - Part 2
Contracts - Part 3
Contracts - Part 4
Contract Versioning
What is IExtensibleDataObject
Exception Handling
Bindings
Method overloading in WCF
Messaging Patterns
Instancing Modes
Concurrency
Click here for all SQL Server Interview Questions
Click here for all ASP.NET Interview Questions
Click here for all C# Interview Questions
Click here for Written Test or practical ASP.NET Interview Questions asked in MNC's
Click here for all ASP.NET Interview Questions
Click here for all C# Interview Questions
Click here for Written Test or practical ASP.NET Interview Questions asked in MNC's
Basic WCF Interview Questions
Contracts - Part 1
Contracts - Part 2
Contracts - Part 3
Contracts - Part 4
Contract Versioning
What is IExtensibleDataObject
Exception Handling
Bindings
Method overloading in WCF
Messaging Patterns
Instancing Modes
Concurrency
Click here for all SQL Server Interview Questions
Click here for all ASP.NET Interview Questions
Click here for all C# Interview Questions
Click here for Written Test or practical ASP.NET Interview Questions asked in MNC's
Hi,
ReplyDeleteYou've put a lot of effort in creating such pool of question answers and it really shows... Thanks for the hard work.. It's really very helpful..
Thanks a lot again!! Keep up the good work and god bless you..
is wcf suppports method overidding
ReplyDeleteYes it is support method overloading with operationcontract name should be unique like
Delete[OperationContract(Name = "AddNumber2")]
int AddNumber(int num1, int num2);
[OperationContract(Name = "AddNumber3")]
int AddNumber(int num1, int num2, int num3);
WCF does supports method overloading/overriding using the Name attribute of the OperationContract attribute. Click here to read the complete article
ReplyDeleteDoes wcf support method overloading
ReplyDeleteYes by using name parameter in operation contract.
Delete[OperationContract(Name="Method1")]
string TestMethod(int para1,int para2);
//Initail method
[OperationContract(Name = "Method2")]
string TestMethod(string para1, string para2);
Hi venkat can you please upload videos about WPF.I am following your all videos very interesting.
ReplyDeleteHi Venkat,
ReplyDeleteIs it possible to hide the multiple service contract's method from the different clients.
Suppose there are 3 clients who are consuming different contract of service on http, they all will be able to see all the contracts and methods. Is it possible to enforce the client to view only the methods intended to that client?
I was asked about What is Dependency Injection in WCF?
ReplyDelete