uTorrentNotifier.Twitter.Update C# (CSharp) Method

Update() public method

public Update ( string message ) : void
message string
return 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);
        }