вы можете использовать System.Xml.Linq, чтобы получить все элементы и необходимые атрибуты, как показано ниже
XDocument document = XDocument.Load(@"D:\New Text Document.xml");
var eleCollection = document.Elements("element");
foreach (var element in eleCollection)
{
var type = element.Attribute("Type").Value;
}