コード例 #1
0
        public TargetFlowInfo GetTargetFlow(string targetFlowId)
        {
            Assert.IsStringNotNullOrEmpty(targetFlowId);

            TargetFlowInfo result = null;
            var            chanel = CreateChannel();

            chanel.Call(p =>
            {
                result = p.GetTargetFlow(targetFlowId);
            });

            return(result);
        }
コード例 #2
0
        public TargetFlowInfo GetTargetFlow(string clientId, string flowCodeOrTargetType, string targetId)
        {
            Assert.IsStringNotNullOrEmpty(clientId);
            Assert.IsStringNotNullOrEmpty(flowCodeOrTargetType);

            TargetFlowInfo result = null;
            var            chanel = CreateChannel();

            chanel.Call(p =>
            {
                result = p.GetTargetFlow(clientId, flowCodeOrTargetType, targetId);
            });

            return(result);
        }