public WebSiteRow AddWebSiteRow(string Path, string Port, string Vpath, System.Guid ID)
            {
                WebSiteRow rowWebSiteRow = ((WebSiteRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Path,
                    Port,
                    Vpath,
                    ID
                };
                rowWebSiteRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowWebSiteRow);
                return(rowWebSiteRow);
            }
 public WebSiteRowChangeEvent(WebSiteRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveWebSiteRow(WebSiteRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddWebSiteRow(WebSiteRow row)
 {
     this.Rows.Add(row);
 }