프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / EmailClient / SendEmailResult.cs @ 950e6b84

이력 | 보기 | 이력해설 | 다운로드 (717 Bytes)

1
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
}
클립보드 이미지 추가 (최대 크기: 500 MB)