SparkleLib.SparkleConfig.GetConfigOption C# (CSharp) Method

GetConfigOption() public method

public GetConfigOption ( string name ) : string
name string
return string
        public string GetConfigOption(string name)
        {
            XmlNode node = SelectSingleNode ("/sparkleshare/" + name);

            if (node != null)
                return node.InnerText;
            else
                return null;
        }