프로젝트

일반

사용자정보

개정판 92442e4a

ID92442e4a9bf39e4238533981c0425b15f25b406a
상위 96c13fad
하위 48f69651

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

image load 수정

Change-Id: I35e6802b9bde1cd6a7c9787f3a71fb53d6ea10ad

차이점 보기:

CommonLib/DNSHelper.cs
43 43
                    result = Dns.GetHostEntry(ipaddress);
44 44
                });
45 45
            }
46
            catch (System.Net.Sockets.SocketException ex)
47
            {
48
                if (ex.SocketErrorCode == System.Net.Sockets.SocketError.HostNotFound)
49
                {
50

  
51
                }
52
            }
46 53
            catch (Exception ex)
47 54
            {
48 55
                System.Diagnostics.Debug.WriteLine(ex.ToString());
......
68 75
            }
69 76
            catch (Exception ex)
70 77
            {
71
                System.Diagnostics.Debug.WriteLine(ex.ToString());
78
                if (ex.InnerException is System.Net.Sockets.SocketException)
79
                {
80
                    System.Diagnostics.Debug.WriteLine((ex.InnerException as System.Net.Sockets.SocketException).SocketErrorCode);
81
                }
82
                else
83
                {
84

  
85
                    System.Diagnostics.Debug.WriteLine(ex.ToString());
86
                }
72 87
            }
73 88

  
74 89
            return result;

내보내기 Unified diff

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