BF2Statistics.Web.Bf2Stats.Controller.EnsureTemplate C# (CSharp) Method

EnsureTemplate() protected method

Returns whether the template name provided has been compiled with the Razor Engine
protected EnsureTemplate ( string Name ) : bool
Name string The name of the template
return bool
        protected bool EnsureTemplate(string Name)
        {
            return Engine.Razor.IsTemplateCached(Name + ".cshtml", HttpServer.ModelType);
        }