Merge pull request #409 from Alkarex/patch-1
[mono.git] / mcs / class / corlib / System.Threading.Tasks / TaskContinuationOptions.cs
index 0f0ea0d8bd6cbb46cea597aaa8077818a815b5ac..789071d6dc449050a960c5c57505d950ee7169cb 100644 (file)
@@ -22,7 +22,7 @@
 //
 //
 
-#if NET_4_0
+#if NET_4_0 || MOBILE
 using System;
 
 namespace System.Threading.Tasks
@@ -34,6 +34,11 @@ namespace System.Threading.Tasks
                PreferFairness        = 0x00001,
                LongRunning           = 0x00002,
                AttachedToParent      = 0x00004,
+#if NET_4_5
+               DenyChildAttach       = 0x00008,
+               HideScheduler         = 0x00010,
+               LazyCancellation      = 0x00020,
+#endif
                NotOnRanToCompletion  = 0x10000,
                NotOnFaulted          = 0x20000,
                NotOnCanceled         = 0x40000,