예제 #1
0
            public SiteListRow AddSiteListRow(string HostName, string UserId, string Password, bool IsSecured)
            {
                SiteListRow rowSiteListRow = ((SiteListRow)(this.NewRow()));

                rowSiteListRow.ItemArray = new object[] {
                    HostName,
                    UserId,
                    Password,
                    IsSecured
                };
                this.Rows.Add(rowSiteListRow);
                return(rowSiteListRow);
            }
예제 #2
0
 public SiteListRowChangeEvent(SiteListRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveSiteListRow(SiteListRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddSiteListRow(SiteListRow row)
 {
     this.Rows.Add(row);
 }