當前位置: 首頁>>代碼示例>>C#>>正文


C# Uri.notNull方法代碼示例

本文整理匯總了C#中System.Uri.notNull方法的典型用法代碼示例。如果您正苦於以下問題:C# Uri.notNull方法的具體用法?C# Uri.notNull怎麽用?C# Uri.notNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Uri的用法示例。


在下文中一共展示了Uri.notNull方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: handleUrlRewrite

        public void handleUrlRewrite(Uri uri)
        {
            try
            {
                if (shouldSkipCurrentRequest())
                    return;
                var absolutePath = uri.notNull() ? uri.AbsolutePath : context.Request.Url.AbsolutePath;

                //if (absolutePath.starts("/html_pages/Gui/")) //deal with the cases where there is an relative link inside the html_pages/Gui viewer page
                //    absolutePath = absolutePath.replace("/html_pages/Gui/", "/article/");

                handleUrlRewrite(absolutePath);
            }
            catch (Exception ex)
            {
                if (ex.Message != "Thread was being aborted.")
                    ex.log("[in handleUrlRewrite]");
            }
        }
開發者ID:DinisCruz,項目名稱:TeamMentor_O2Platform,代碼行數:19,代碼來源:HandleUrlRequest.cs

示例2: handleUrlRewrite

        public bool handleUrlRewrite(Uri uri)
        {
            try
            {
                var absolutePath = uri.notNull() ? uri.AbsolutePath
                                                 : request.Url.notNull()
                                                    ? request.Url.AbsolutePath
                                                    : null;

                if (absolutePath.isNull())
                    return false;
                if (absolutePath.siteData_Handle_VirtualPath())
                    return true;
                if (shouldSkipCurrentRequest())
                    return true;

                return handleUrlRewrite(absolutePath);
            }
            catch (Exception ex)
            {
                if (ex.Message != "Thread was being aborted.")
                {
                    ex.logWithStackTrace("[at handleUrlRewrite]");
                    return true;
                }
                return false;
            }
        }
開發者ID:TeamMentor,項目名稱:Dev,代碼行數:28,代碼來源:HandleUrlRequest.cs

示例3: serverOnline

 public static bool serverOnline(this TM_QA_Config tmQaConfig, Uri targetServer)
 {
     if (targetServer.notNull())
     {
         if (TM_QA_Config.Force_Server_Offline)
             return false;
         return targetServer.append("default.htm")
                            .HEAD();
     }
     return false;
 }
開發者ID:TeamMentor,項目名稱:Dev,代碼行數:11,代碼來源:TM_QA_Config.cs

示例4: open

 public static WatiN_IE open(this WatiN_IE watinIe, Uri uri)
 {
     return (watinIe.notNull() && uri.notNull())
         ? watinIe.open(uri.str())
         : watinIe;
 }
開發者ID:TeamMentor,項目名稱:Dev,代碼行數:6,代碼來源:Extra_Watin__Extension_Methods.cs

示例5: wait_For_Uri

 public static WatiN_IE wait_For_Uri(this WatiN_IE watinIe, Uri expectedUri,  int maxWait = 1000)
 {
     return (watinIe.notNull() && expectedUri.notNull())
         ? watinIe.wait_For_Url(expectedUri.str(),maxWait)
         : watinIe;
 }
開發者ID:TeamMentor,項目名稱:Dev,代碼行數:6,代碼來源:Extra_Watin__Extension_Methods.cs

示例6: assert_Uri_Is

 public static WatiN_IE assert_Uri_Is(this WatiN_IE watinIe, Uri expectedUri, string message = Extra_NUnit_Messages.ASSERT_URL_IS)
 {
     return (watinIe.notNull() && expectedUri.notNull())
                 ? watinIe.assert_Url_Is(expectedUri.str(),message)
                 : watinIe;
 }
開發者ID:TeamMentor,項目名稱:Dev,代碼行數:6,代碼來源:Extra_Watin_NUnit_Extension_Methods.cs


注:本文中的System.Uri.notNull方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。