| c# Programming Glossary: serviceclientPattern for calling WCF service using async/await http://stackoverflow.com/questions/18284998/pattern-for-calling-wcf-service-using-async-await  should this service be invoked properly disposing of the ServiceClient and the OperationContext afterwards using async await My first.. DateTime timestamp using var helper new ServiceHelper ServiceClient ServiceContract  return await helper.Proxy.GetHomeInfoAsync.. timestamp  Being ServiceHelper a class which creates the ServiceClient and the OperationContextScope and disposes of them afterwards.. 
 Reconnecting to Servicestack session in an asp.net MVC4 application http://stackoverflow.com/questions/19160839/reconnecting-to-servicestack-session-in-an-asp-net-mvc4-application  public partial class AuthController BaseController JsonServiceClient client new ServiceStack.ServiceClient.Web.JsonServiceClient.. BaseController JsonServiceClient client new ServiceStack.ServiceClient.Web.JsonServiceClient TheAPIurl GET Login public ActionResult.. client new ServiceStack.ServiceClient.Web.JsonServiceClient TheAPIurl GET Login public ActionResult login  if Session IsAuthenticated.. 
 Handling WCF events in another process http://stackoverflow.com/questions/8889051/handling-wcf-events-in-another-process  UseSynchronizationContext false public partial class ServiceClient Form IMyService_Callback Sync context for enabling callbacks.. callbacks SynchronizationContext uiSyncContext public ServiceClient  InitializeComponent uiSyncContext SynchronizationContext.Current.. var factory new DuplexChannelFactory IMyService typeof ServiceClient NetTcpBinding_IMyService var proxy factory.CreateChannel new.. 
 |