markus / ConvertService / ConverterService / ImageFields / StreamEventArgs.cs @ 74abcf6f
이력 | 보기 | 이력해설 | 다운로드 (556 Bytes)
1 | 7ca218b3 | KangIngu | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | |||
6 | namespace ImageFields |
||
7 | { |
||
8 | public class StreamEventArgs : EventArgs |
||
9 | { |
||
10 | // Methods |
||
11 | public StreamEventArgs(string fileName) |
||
12 | { |
||
13 | this.FileName = fileName; |
||
14 | } |
||
15 | |||
16 | // Properties |
||
17 | public bool Compress { get; set; } |
||
18 | |||
19 | public string FileName { get; set; } |
||
20 | |||
21 | public string MimeType { get; set; } |
||
22 | |||
23 | public double Progress { get; set; } |
||
24 | |||
25 | public System.IO.Stream Stream { get; set; } |
||
26 | } |
||
27 | } |