Example #1
0
 public Task()
 {
     Argument            = new TaskArgument();
     handlers            = PropertyChangedHandlerAttribute.Create(this.GetType());
     ID                  = Guid.NewGuid();
     Name                = string.Empty;
     AutoHandleException = true;
     PropertyChanged    += Task_PropertyChanged;
 }
Example #2
0
 public TaskArgument()
 {
     handlers         = PropertyChangedHandlerAttribute.Create(this.GetType());
     Properties       = new Dictionary <string, object>();
     PropertyChanged += TaskArgument_PropertyChanged;
 }