Universal Bible API 1.0.2011.1274

Helpers.cs

Go to the documentation of this file.
00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Xml.Linq;
00005 using System.Text;
00006 
00007 namespace UniversalBibleAPI
00008 {
00009     public static class Helpers
00010     {
00011 
00012         public static bool HasAttributName(this XElement el, string attribute)
00013         {
00014             try
00015             {
00016                 foreach (var att in el.Attributes())
00017                 {
00018 
00019                     if (att.Name == attribute)
00020                     {
00021                         return true;
00022                     }
00023 
00024                 }
00025                 return false;
00026             }
00027             catch (Exception)
00028             {
00029 
00030                 return false;
00031             }
00032 
00033         }
00034     }
00035 }
 All Classes Namespaces Files Functions Enumerations Properties Events