Thread.cs 309 B

123456789101112131415161718192021
  1. namespace System.Threading
  2. {
  3. partial class Thread
  4. {
  5. public ExecutionContext ExecutionContext {
  6. get {
  7. throw new NotImplementedException ();
  8. }
  9. set {
  10. }
  11. }
  12. public SynchronizationContext SynchronizationContext {
  13. get {
  14. throw new NotImplementedException ();
  15. }
  16. set {
  17. }
  18. }
  19. }
  20. }