Retourner une valeur par défaut si la valeur d’attribut est nulle

Author:

Utilisation,de,la,classe,'XmlTextReader',pour,lire,un,document,XML
{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
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *