Castle.MonoRail.Framework.FileAssemblyViewSourceLoader.HasTemplate C# (CSharp) Method

HasTemplate() public method

Evaluates whether the specified template exists.
public HasTemplate ( String templateName ) : bool
templateName String The template name
return bool
		public bool HasTemplate(String templateName)
		{
			if (HasTemplateOnFileSystem(templateName))
			{
				return true;
			}

			return HasTemplateOnAssemblies(templateName);
		}