I am just curious to know that what is ClientBase class in WCF, and how can i use it.
I surfed the internet and i found that this class is used to create proxies to call service methods , but no example.
Please anyone explain it with example , it will help me undestand this class…
I am just curious to know that what is ClientBase class in WCF, and
Share
It’s the base class for your client proxies being generated by either “Add Service Reference”, the
svcutil.execommand line utility, or by your custom code if you don’t want to use any of those methods.It’s a generic type that takes the generated client-copy of the service contract as its type parameter.
It can be extended, if you wish to do so – e.g. see IDesign’s download page for a few samples of what can be done, things like:
Marc