프로젝트

일반

사용자정보

개정판 cdfb57ff

IDcdfb57ff4780f16447f02fb0203c397a3732c3cd
상위 dbc1e5b6
하위 96c13fad

김태성이(가) 5년 이상 전에 추가함

zoom control 이벤트 추가
mainmenu 수정
app 수정

Change-Id: I0d007c3a3c412b7fbe6e2a52bafb932e1a7b9f03

차이점 보기:

CommonLib/DNSHelper.cs
29 29
            }
30 30
            return null;
31 31
        }
32

  
33
        public static async Task<IPHostEntry> GetHostEntryAsync()
34
        {
35
            IPHostEntry result = null;
36

  
37
            try
38
            {
39
                var ipaddress = CommonLib.DNSHelper.GetDnsAdress();
40

  
41
                await Task.Factory.StartNew(() =>
42
                {
43
                    result = Dns.GetHostEntry(ipaddress);
44
                });
45
            }
46
            catch (Exception ex)
47
            {
48
                System.Diagnostics.Debug.WriteLine(ex.ToString());
49
            }
50

  
51
            return result;
52
        }
53

  
54
        public static IPHostEntry GetHostEntryTask()
55
        {
56
            IPHostEntry result = null;
57

  
58
            try
59
            {
60
                var ipaddress = CommonLib.DNSHelper.GetDnsAdress();
61

  
62
                var task = Task.Factory.StartNew(() =>
63
                {
64
                    result = Dns.GetHostEntry(ipaddress);
65
                });
66

  
67
                task.Wait();
68
            }
69
            catch (Exception ex)
70
            {
71
                System.Diagnostics.Debug.WriteLine(ex.ToString());
72
            }
73

  
74
            return result;
75
        }
32 76
    }
33 77
}

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)