public AuthenticationListViewItem(AuthenticationFeature feature, AuthenticationPage page)
     : base(feature.Name)
 {
     _page   = page;
     Feature = feature;
     _status = new ListViewSubItem(this, feature.IsEnabled ? "Enabled" : "Disabled");
     SubItems.Add(_status);
     SubItems.Add(new ListViewSubItem(this, GetString(feature.AuthenticationType)));
     feature.AuthenticationSettingsUpdated = AuthenticationSettingsUpdated;
 }
 public PageTaskList(AuthenticationPage owner)
 {
     _owner = owner;
 }