public IsapiCgiRestrictionListViewItem(IsapiCgiRestrictionItem item, IsapiCgiRestrictionPage page)
     : base(item.Description)
 {
     this.Item = item;
     _page     = page;
     this.SubItems.Add(new ListViewSubItem(this, item.Allowed ? "Allowed" : "Not Allowed"));
     this.SubItems.Add(new ListViewSubItem(this, item.Path));
 }
 public PageTaskList(IsapiCgiRestrictionPage owner)
 {
     _owner = owner;
 }