BlogEngine.Core.Providers.BlogService.GetFileContents C# (CSharp) Method

GetFileContents() static private method

gets the file contents via Lazy load, however in the DbProvider the Contents are loaded when the initial object is created to cut down on DbReads
static private GetFileContents ( File BaseFile ) : File
BaseFile File the baseFile object to fill
return File
        internal static File GetFileContents(File BaseFile)
        {
            return FileSystemProvider.GetFileContents(BaseFile);
        }