internal void MarkGroupAsRetrieved(string groupName) { SectionUpdates sectionUpdates = _groups[groupName] as SectionUpdates; if (sectionUpdates != null) { sectionUpdates.MarkAsRetrieved(); } }
internal void MarkGroupAsRetrieved(string groupName) { SectionUpdates updates = this._groups[groupName] as SectionUpdates; if (updates != null) { updates.MarkAsRetrieved(); } }
internal void MarkGroupAsRetrieved(string groupName) { SectionUpdates sectionUpdates = _groups[groupName] as SectionUpdates; sectionUpdates?.MarkAsRetrieved(); }