Exemplo n.º 1
0
        public OutlookTask()
        {
            _task = new ExTaskItem {
                key = new ArrayOfString(), val = new ArrayOfString()
            };

            SetStringValue("priority", "5");
            SetStringValue("percentComplete", "0");
            SetStringValue("status", "InProcess");  // InProcess. Not started is not support by this web service, only (NeedsAction,InProcess,Completed) are supported

            Guid = System.Guid.NewGuid().ToString("N");
        }
Exemplo n.º 2
0
 public OutlookTask(ExTaskItem task)
 {
     _task = task;
 }