以下のような非同期メソッドを作成しました
System.Threading.Tasks.Task.Factory.StartNew(
() => AddAttachment(document, docId, user)).ContinueWith(
task => BackUpQueuesMail(task.Exception, information, list),
TaskContinuationOptions.OnlyOnFaulted);
AddAttachment() メソッドが正常に処理された後、コールバック関数を実行する必要があります。どうすればこれを可能にできますか?