Which is the default mode for Instancing in WCF?
-
Singleton
-
PerSession
-
PerCall
-
IsRequired
C
Correct answer
Explanation
WCF's default instancing mode is PerCall, where a new service object is created for each operation invocation and disposed after the response. This provides better scalability and statelessness unless another mode (PerSession or Single) is explicitly configured.