Encog.App.Analyst.Script.Prop.ScriptProperties.GetPropertyURL C# (CSharp) Method

GetPropertyURL() public method

Get a property as a url.
public GetPropertyURL ( String name ) : Uri
name String The property name.
return Uri
        public Uri GetPropertyURL(String name)
        {
            try
            {
                return new Uri(_data[name]);
            }
            catch (UriFormatException e)
            {
                throw new AnalystError(e);
            }
        }