示例#1
0
            public ForumRow AddForumRow(string ThreadFile, System.DateTime DateTime, string UserId, string Author, string Email, string Title, string Text, int CommentCount, string LastPosterName, string LastPosterId)
            {
                ForumRow rowForumRow = ((ForumRow)(this.NewRow()));

                rowForumRow.ItemArray = new object[] {
                    ThreadFile,
                    DateTime,
                    UserId,
                    Author,
                    Email,
                    Title,
                    Text,
                    CommentCount,
                    LastPosterName,
                    LastPosterId,
                    null
                };
                this.Rows.Add(rowForumRow);
                return(rowForumRow);
            }
示例#2
0
 public ForumRowChangeEvent(ForumRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveForumRow(ForumRow row) {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddForumRow(ForumRow row) {
     this.Rows.Add(row);
 }
示例#5
0
 public ForumRowChangeEvent(ForumRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#6
0
 public void RemoveForumRow(ForumRow row)
 {
     this.Rows.Remove(row);
 }
示例#7
0
 public void AddForumRow(ForumRow row)
 {
     this.Rows.Add(row);
 }