Carrotware.CMS.Core.ContentSnippet.GetHistory C# (CSharp) Method

GetHistory() public method

public GetHistory ( ) : List
return List
        public List<ContentSnippet> GetHistory()
        {
            using (CarrotCMSDataContext _db = CarrotCMSDataContext.Create()) {
                List<ContentSnippet> _types = (from d in CompiledQueries.cqGetSnippetVersionHistory(_db, this.Root_ContentSnippetID)
                                               select new ContentSnippet(d)).ToList();

                return _types;
            }
        }

Same methods

ContentSnippet::GetHistory ( System.Guid rootSnippetID ) : List