Claymore.NewPagesWikiBot.Cache.PageInfo.PageInfo C# (CSharp) Method

PageInfo() public method

public PageInfo ( string title, string author, System.DateTime firstEdit, long firstEditId ) : System
title string
author string
firstEdit System.DateTime
firstEditId long
return System
            public PageInfo(string title, string author, DateTime firstEdit, long firstEditId)
            {
                Title = title;
                Author = author;
                FirstEdit = firstEdit;
                FirstEditId = firstEditId;
                Redirect = "";
            }

Same methods

Cache.PageInfo::PageInfo ( string title, string author, System.DateTime firstEdit, string redirect ) : System
Cache.PageInfo