WikiFunctions.Tools.GetTemplateParameterValue C# (CSharp) Method

GetTemplateParameterValue() public static method

Returns the value of the input parameter in the input template
public static GetTemplateParameterValue ( string templateCall, string parameter ) : string
templateCall string the input template call
parameter string the input parameter to find
return string
        public static string GetTemplateParameterValue(string templateCall, string parameter)
        {
            return GetTemplateParameterValue(templateCall, parameter, false);
        }

Same methods

Tools::GetTemplateParameterValue ( string templateCall, string parameter, bool caseInsensitiveParameterName ) : string
Tools