
{filelink=16396}
/*Microsoft Public License (Ms-PL)
http://dbmlmanager.codeplex.com/license
*/
#region using
using System;
using System.Xml;
#endregion
namespace DbmlManager.Lib.Utility
{
#region Class Docs
///
/// Summary description for XmlUtil.
///
#endregion
public class XmlUtil
{
#region GetAttrib(XmlNode noeud, string attrib, string valDefaut)
public static string GetAttrib(XmlNode noeud, string attrib, string valDefaut)
{
XmlAttribute xmlAttrib = noeud.Attributes[attrib];
if (xmlAttrib == null)
return valDefaut;
string val = xmlAttrib.Value;
return (val == null) ? valDefaut : val;
}
#endregion
}
}