public static void RemoveIgnoredUser(string username) { string message; TryRemoveIgnoredUser(username, out message); NoticeAdded?.Invoke(null, new ValueEventArgs <string>(message)); }
public static void AddIgnoredUser(string username, string userid) { string message; TryAddIgnoredUser(username, userid, out message); NoticeAdded?.Invoke(null, new ValueEventArgs <string>(message)); }