本文整理匯總了C#中System.Xml.Linq.XContainer.ElementValue方法的典型用法代碼示例。如果您正苦於以下問題:C# XContainer.ElementValue方法的具體用法?C# XContainer.ElementValue怎麽用?C# XContainer.ElementValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Xml.Linq.XContainer
的用法示例。
在下文中一共展示了XContainer.ElementValue方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DeserializeTab
private void DeserializeTab(XContainer tabElement)
{
var tab = new Tab
{
Caption = tabElement.ElementValue("Caption"),
Id = Convert.ToInt32(tabElement.ElementValue("Id")),
Order = !String.IsNullOrEmpty(tabElement.ElementValue("Order"))
? (int?)Convert.ToInt32(tabElement.ElementValue("Order"))
: null
};
type.Tabs.Add(tab);
}
示例2: DeserializeProperty
private void DeserializeProperty(XContainer propElement)
{
var prop = new GenericProperty
{
Name = propElement.ElementValue("Name"),
Alias = propElement.ElementValue("Alias"),
Type = propElement.ElementValue("Type"),
Definition = propElement.ElementValue("Definition"),
Tab = propElement.ElementValue("Tab"),
Mandatory = Convert.ToBoolean(propElement.ElementValue("Mandatory")),
Validation = propElement.ElementValue("Validation"),
Description = propElement.ElementValue("Description")
};
type.GenericProperties.Add(prop);
}