コード例 #1
0
ファイル: OutlookTask.cs プロジェクト: hkedjour/email-handler
        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");
        }
コード例 #2
0
ファイル: OutlookTask.cs プロジェクト: hkedjour/email-handler
 public OutlookTask(ExTaskItem task)
 {
     _task = task;
 }