zoukankan      html  css  js  c++  java
  • 工作流状态

     

    namespace Microsoft.SharePoint.Workflow
    {
        [Flags]
        public enum SPWorkflowState
        {
            None = 0,
            Locked = 1,
            Running = 2,
            Completed = 4,
            Cancelled = 8,
            Expiring = 16,
            Expired = 32,
            Faulting = 64,
            Terminated = 128,
            Suspended = 256,
            Orphaned = 512,
            HasNewEvents = 1024,
            NotStarted = 2048,
            All = 4095,
        }
    }

    if(item.Workflows[0].InternalState == Microsoft.SharePoint.Workflow.SPWorkflowState.Completed)

    Workflow层面

     namespace Microsoft.SharePoint.Workflow
    {
        public enum SPWorkflowStatus
        {
            NotStarted = 0,
            FailedOnStart = 1,
            InProgress = 2,
            ErrorOccurred = 3,
            StoppedByUser = 4,
            Completed = 5,
            FailedOnStartRetrying = 6,
            ErrorOccurredRetrying = 7,
            ViewQueryOverflow = 8,
            Max = 15,
        }
    }

    item的Workflow状态层面

     

  • 相关阅读:
    zabbix3.4.6之源码安装
    集群概念Cluster
    awk文本分析工具
    shell getopts用法
    expect交互式安装软件
    常用通配符
    iptable四表五链
    质量保障&&质量体系建设
    MySQL数据库同步工具的设计与实现
    Redis ==> 集群的三种模式
  • 原文地址:https://www.cnblogs.com/ceci/p/1518147.html
Copyright © 2011-2022 走看看