Priya.InfoList.Views.TemplateSubscriberList.ProcessPlaceHolder C# (CSharp) Method

ProcessPlaceHolder() protected method

protected ProcessPlaceHolder ( string template ) : string
template string
return string
		protected string ProcessPlaceHolder(string template)
		{
			template = template.Replace("{{ListScript}}", string.IsNullOrEmpty(ListScript)==false ? ListScript : "");
			template = template.Replace("{{ListDetail}}", string.IsNullOrEmpty(ListDetail)==false ? ListDetail : "");
			return template;
		}