XmlNodeList nodeList = this.doc.SelectNodes(string.Format("//DXSL//Configuration[@name='{0}']//{1}", "Providers", "Provider "));
XmlAttribute attribute1 = nodeList [i].Attributes["name"];
XmlAttribute attribute2 = nodeList [i].Attributes["type"];
XmlAttribute attribute3 = nodeList [i].Attributes["connectionName"];
<Configuration name="Providers">
<Provider name="LogProvider" type="DXSL.EventLog.TextLogWriter,DXSL" />
<Provider name="ErrorLogProvider" type="DXSL.EventLog.TextLogWriter,DXSL" />
<Provider name="ManageProvider" type="MDBLL.Data.MongoDataManage,MDBLL" connectionName="OracleConnectionString" />
</Configuration>