diff --git a/xml/System.Threading.Tasks/TaskContinuationOptions.xml b/xml/System.Threading.Tasks/TaskContinuationOptions.xml index 00cc09b9b51..b224d7678d3 100644 --- a/xml/System.Threading.Tasks/TaskContinuationOptions.xml +++ b/xml/System.Threading.Tasks/TaskContinuationOptions.xml @@ -394,7 +394,10 @@ 262144 - Specifies that the continuation task should not be scheduled if its antecedent was canceled. An antecedent is canceled if its property upon completion is . This option is not valid for multi-task continuations. + Specifies that the continuation task should not be scheduled if its antecedent was canceled. An antecedent is canceled if its property upon completion is . This option is not valid for multi-task continuations. + + Note: if you intend that a chain of continuation tasks should stop when one of the tasks throws an exception, use the flag on all the continuation tasks instead of . +