uTorrentNotifier.Twitter.Update C# (CSharp) Méthode

Update() public méthode

public Update ( string message ) : void
message string
Résultat void
        public void Update(string message)
        {
            BackgroundWorker bw = new BackgroundWorker();
            bw.WorkerReportsProgress = false;
            bw.WorkerSupportsCancellation = false;
            bw.DoWork += new DoWorkEventHandler(bw_Update);
            bw.RunWorkerAsync(message);
        }