我有 WCF 服务
[ServiceBehavior(
InstanceContextMode = InstanceContextMode.Single,
ConcurrencyMode = ConcurrencyMode.Single,
IncludeExceptionDetailInFaults = true)]
public class ClientAPI : IClientAPI { ... }
和 .NET 包装器在我添加时为此服务生成Service Reference
。
那个包装对象线程安全吗?我的意思是我可以在不同步访问对象本身的情况下从不同的线程调用此客户端对象的方法吗?