Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

[Help] Are there any way to know the list tables should be push?🙏 #850

Closed Answered by adrianhall
2themoonz asked this question in Q&A
Discussion options

You must be logged in to vote

The way to drive a progress bar is to hook into the SynchronizationProgress event handler on the client.

client.SynchronizationProgress += (object sender, SynchronizationEventArgs eventargs) => { /* do something */ };

The SynchronizationEventArgs is defined:

    /// <summary>
    /// The list of synchronization events that we support.
    /// </summary>
    public enum SynchronizationEventType
    {
        PushStarted,
        ItemWillBePushed,
        ItemWasPushed,
        PushFinished,
        PullStarted,
        ItemWillBeStored,
        ItemWasStored,
        PullFinished
    }

    public class SynchronizationEventArgs
    {
        /// <summary>
        /// The type of event.

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@2themoonz
Comment options

Answer selected by 2themoonz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants