private void OnPullCompleted(ContentPullerEventArgs e) { PullCompleted?.Invoke(this, e); }
/// <summary>Invokes <see cref="PullCompleted"/>.</summary> /// <param name="remote">Remote.</param> /// <param name="changes">Reference changes.</param> internal void OnPullCompleted(Remote remote, ReferenceChange[] changes) => PullCompleted?.Invoke(this, new PullCompletedEventArgs(remote, changes));