uTorrentNotifier.Twitter.Update C# (CSharp) 메소드

Update() 공개 메소드

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