Reputation: 86095
As title. Is Open method necessary before calling CreateChannel?
Upvotes: 1
Views: 493
Reputation: 329
WCF Channel has many states (created,opened, closed,..) , before opening the chanel it must be created , it's the role of CreateChannel methodand after you can open it, but with WCF the channel is opened implicitly if some method of proxy created by CreateChanel is invocked.
And sure you can invoke Open explicitly but after creation;
Upvotes: 2