markus / ConvertService / ServiceBase / EmailClient / SendEmailResult.cs @ 43e1d368
이력 | 보기 | 이력해설 | 다운로드 (717 Bytes)
1 | 950e6b84 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | |||
6 | namespace EmailClient |
||
7 | { |
||
8 | public class SendEmailResult : EventArgs |
||
9 | { |
||
10 | public SendEmailResult(bool Seccess,Exception Exception) |
||
11 | { |
||
12 | this.Seccess = Seccess; |
||
13 | |||
14 | if(Exception!=null) |
||
15 | this._Exception = Exception; |
||
16 | } |
||
17 | |||
18 | private bool _Seccess; |
||
19 | |||
20 | public bool Seccess |
||
21 | { |
||
22 | get { return _Seccess; } |
||
23 | private set { _Seccess = value; } |
||
24 | } |
||
25 | private Exception _Exception; |
||
26 | |||
27 | public Exception Exception |
||
28 | { |
||
29 | get { return _Exception; } |
||
30 | private set { _Exception = value; } |
||
31 | } |
||
32 | } |
||
33 | } |