Christoc.Modules.DnnChat.Archive.BuildArchiveLink C# (CSharp) Method

BuildArchiveLink() protected method

protected BuildArchiveLink ( System.Guid roomId, System.DateTime startDate, System.DateTime endDate ) : string
roomId System.Guid
startDate System.DateTime
endDate System.DateTime
return string
        protected string BuildArchiveLink(Guid roomId, DateTime startDate, DateTime endDate)
        {
            return EditUrl(string.Empty, string.Empty, "Archive", "&roomid=" + roomId + "&sd=" + startDate + "&ed=" + endDate);
        }