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


C# Promise.Continue方法代碼示例

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


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

示例1: GetCompletions


//.........這裏部分代碼省略.........
                case "version":
                case "isCriteria":
                case "related_expand":
                case "serverEvents":
                  items = StringPromise("0", "1");
                  break;
                case "queryType":
                  items = StringPromise("Effective", "Latest", "Released");
                  break;
                case "orderBy":
                  if (!string.IsNullOrEmpty(path.Last().Type)
                    && _itemTypes.TryGetValue(path.Last().Type, out itemType))
                  {
                    var lastComma = attrValue.LastIndexOf(",");
                    if (lastComma >= 0) attrValue = attrValue.Substring(lastComma + 1).Trim();

                    items = GetProperties(itemType)
                      .Convert(p => p.SelectMany(i => new string[] { i.Name, i.Name + " DESC" }));
                  }
                  multiValueAttribute = true;
                  break;
                case "select":
                  if (!string.IsNullOrEmpty(path.Last().Type)
                    && _itemTypes.TryGetValue(path.Last().Type, out itemType))
                  {
                    string partial;
                    var selectPath = SelectPath(attrValue, out partial);
                    attrValue = partial;

                    var itPromise = new Promise<ItemType>();
                    RecurseProperties(itemType, selectPath, it => itPromise.Resolve(it));

                    items = itPromise
                      .Continue(it => GetProperties(it))
                      .Convert(p => p.Select(i => i.Name));
                  }
                  multiValueAttribute = true;
                  break;
                case "type":
                  if (path.Count > 2
                    && path[path.Count - 3].LocalName == "Item"
                    && path[path.Count - 2].LocalName == "Relationships")
                  {
                    if (!string.IsNullOrEmpty(path[path.Count - 3].Type)
                      && _itemTypes.TryGetValue(path[path.Count - 3].Type, out itemType))
                    {
                      items = StringPromise(itemType.Relationships.Select(r => r.Name));
                    }
                  }
                  else
                  {
                    items = StringPromise(_itemTypes.Select(i => i.Value.Name));
                  }
                  break;
                case "where":
                  if (!string.IsNullOrEmpty(path.Last().Type)
                    && _itemTypes.TryGetValue(path.Last().Type, out itemType))
                  {
                    items = GetProperties(itemType)
                      .Convert(i => i.Select(p => "[" + itemType.Name + "].[" + p.Name + "]"));
                  }
                  multiValueAttribute = true;
                  break;
              }
            }
            else
開發者ID:cornelius90,項目名稱:InnovatorAdmin,代碼行數:67,代碼來源:CompletionHelper.cs


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