Beispiel #1
0
 protected WcfWrapper(S singleton)
 {
     InProcFactory.SetSingleton(singleton);
     Proxy = InProcFactory.CreateInstance <S, I>();
 }
Beispiel #2
0
 public void Close()
 {
     InProcFactory.CloseProxy(Proxy);
 }
Beispiel #3
0
 protected WcfWrapper()
 {
     Proxy = InProcFactory.CreateInstance <S, I>();
 }