CmisSync.Controller.NotifyUser C# (CSharp) Method

NotifyUser() public method

Send a message to the end user.
public NotifyUser ( string message ) : void
message string
return void
        public void NotifyUser(string message)
        {
            var thread = new Thread(
                () =>
                {
                    System.Windows.Forms.MessageBox.Show(message, "CmisSync notification");
                }
            );
            thread.Start();
        }