BlueSky.Services.XmlDashBoardService.GetAttributeString C# (CSharp) Method

GetAttributeString() private method

private GetAttributeString ( XmlNode nd, string name ) : string
nd System.Xml.XmlNode
name string
return string
        private string GetAttributeString(XmlNode nd, string name)
        {
            XmlAttribute att = null;
            att = nd.Attributes[name];
            return (att != null) ? att.Value : string.Empty;
        }