本文整理匯總了C#中Category.LoadXElement方法的典型用法代碼示例。如果您正苦於以下問題:C# Category.LoadXElement方法的具體用法?C# Category.LoadXElement怎麽用?C# Category.LoadXElement使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Category
的用法示例。
在下文中一共展示了Category.LoadXElement方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetCategory
public Category GetCategory(int categoryID)
{
var data = downloadWebPage(getFullUrl("admin/categories/" + categoryID + ".xml"), HttpMethod.GET);
var x = XDocument.Parse(data).Root;
var cat = new Category();
cat.LoadXElement(x);
return cat;
}
示例2: UpdateCategory
public void UpdateCategory(Category category)
{
var data = downloadWebPage(getFullUrl("admin/categories/" + category.ID + ".xml"), HttpMethod.PUT, category.ToXElement().ToString());
var x = XDocument.Parse(data).Root;
category.LoadXElement(x);
}
示例3: GetCategories
public IEnumerable<Category> GetCategories()
{
var data = downloadWebPage(getFullUrl("admin/categories.xml"), HttpMethod.GET);
var x = XDocument.Parse(data);
foreach (var item in x.Root.Elements())
{
var cat = new Category();
cat.LoadXElement(item);
yield return cat;
}
}