top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Please explain briefly different Instance Modes in WCF?

+2 votes
299 views
Please explain briefly different Instance Modes in WCF?
posted Mar 7, 2017 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

WCF will bind an incoming message request to a particular service instance, so the available modes are:
Per Call: instance created for each call, most efficient in term of memory but need to maintain session.

Per Session: Instance created for a complete session of a user. Session is maintained.

Single: Only one instance created for all clients/users and shared among all.Least efficient in terms of memory.

answer Mar 8, 2017 by Sathish Kumar
...