.NET Remoting을 사용할때 요청 타임아웃 설정하는 법. 역시 오늘도 삽질을 하고 있습니다. private TcpClientChannel _channelTcp = null; // 채널생성을 위한 프로퍼터생성 IDictionary props = new Hashtable() as IDictionary; props["name"] = "TcpChannel"; props["timeout"] = 200; props["connectionTimeout"] = 200; // Timeout 200msec props["socketcachetimeout"] = 0.2; // Timeout 200msec // 채널생성 : 바이너리 포맷터 _channelTcp = new TcpClientChannel(props, new ..