markus / IIpc / IIpcServer.cs @ 77cdac33
이력 | 보기 | 이력해설 | 다운로드 (441 Bytes)
1 | 2007ecaa | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Diagnostics; |
||
4 | using System.Linq; |
||
5 | 664ea2e1 | taeseongkim | using System.ServiceModel; |
6 | 2007ecaa | taeseongkim | using System.Text; |
7 | using System.Threading.Tasks; |
||
8 | |||
9 | namespace IIpc |
||
10 | { |
||
11 | public interface IIpcServer : IDisposable |
||
12 | { |
||
13 | void Start(); |
||
14 | void Stop(); |
||
15 | |||
16 | event EventHandler<IpcThumbnailEventArgs> IpcThumbnailReceived; |
||
17 | event EventHandler<IpcDownloadStatusArgs> IpcFileDownloadReceived; |
||
18 | } |
||
19 | } |