프로젝트

일반

사용자정보

개정판 0beae8fb

ID0beae8fb830e2ead30348446a65818c230d2ae2e
상위 ffddbe4e
하위 360e4f75

김동진이(가) 5년 이상 전에 추가함

issue #660: 누락분 커밋

Change-Id: Ia040829caa4d703297ee6b5cf361e5577f2c60aa

차이점 보기:

KCOM/Common/Check_Uri.cs
8 8
{
9 9
    class Check_Uri
10 10
    {
11
        public static void UriCheck(string filepath)
11
        public static void UriCheck(string uristring)
12 12
        {
13
            if (!(Uri.TryCreate(filepath, UriKind.Absolute, out Uri uri) && uri.Scheme == Uri.UriSchemeHttp))
13
            if (!(Uri.TryCreate(uristring, UriKind.Absolute, out Uri uri) && uri.Scheme == Uri.UriSchemeHttp))
14 14
            {
15 15
                throw new Exception();
16 16
            }           
17 17
        }
18 18

  
19
        public static bool UriCheckBool(string filepath)
19
        public static bool isUri(string uristring)
20 20
        {
21
            if (!(Uri.TryCreate(filepath, UriKind.Absolute, out Uri uri) && uri.Scheme == Uri.UriSchemeHttp))
21
            if (!(Uri.TryCreate(uristring, UriKind.Absolute, out Uri uri) && uri.Scheme == Uri.UriSchemeHttp))
22 22
            {
23 23
                return false;
24 24
            }

내보내기 Unified diff

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