NVelocity.Runtime.RuntimeSingleton.GetBoolean C# (CSharp) Method

GetBoolean() public static method

Boolean property accessor method to hide the configuration implementation.
public static GetBoolean ( String key, bool def ) : bool
key String property key
def bool default value if property not found
return bool
        public static bool GetBoolean(String key, bool def)
        {
            return ri.GetBoolean(key, def);
        }