コード例 #1
0
        public void SendFile(string path)
        {
            var fileCommunicationHandler = new FileCommunicationHandler(this);

            fileCommunicationHandler.SendFile(path);
        }
コード例 #2
0
        public string ReceiveFile()
        {
            var fileCommunicationHandler = new FileCommunicationHandler(this);

            return(fileCommunicationHandler.ReceiveFile());
        }