예제 #1
0
 public RemotingManager(IContextLoader contextLoader)
 {
     ServiceManager = new ServiceManager(this);
     DelegateManager = new DelegateManager(this);
     ReferenceManager = new ReferenceManager(this);
     ContextManager = new ContextManager(this, contextLoader);
 }
예제 #2
0
        public ContextManager(RemotingManager remotingManager, IContextLoader loader)
        {
            localIdToContext = new Dictionary<int, ContextInfo>();
            contextIdToContext = new Dictionary<IContextId, ContextInfo>();
            localIdCounter = 1;

            this.remotingManager = remotingManager;
            Loader = loader;
        }
예제 #3
0
 public NTextManager(IContextLoader contextLoader)
 {
     NTextManager.TextKeyStartColumnIndex = 0;
     this._contextLoader  = contextLoader;
     this.CRLFReplaceTime = NTextManager.CRLFReplaceTimeType.GETTING;
 }