public void StartDecoding()
        {
            IDaemonStrategy strategy = _application.SwitchStrategy(SessionState.Decoding);

            strategy.StartDecoding();
        }
Ejemplo n.º 2
0
 public void StartDecoding(ILifetimeSponsor sponsor)
 {
     sponsor = Proxy.ProxyBaseObjectHelper.ResolveRealRemoteObject <ILifetimeSponsor>(sponsor);
     _lifetimeSponsors.RegisterSponsor(sponsor);
     _currentStrategy.StartDecoding();
 }