0

执行以下操作时,while循环永远不会结束。我在这里调用一个方法来获取 while 循环条件的值。请告诉我我做错了什么?

    using System;
    using System.Linq;
    using System.Activities;
    using System.Activities.Statements;
    using System.IO;

   namespace BuildActivities
    {
   public sealed class CheckFile : CodeActivity
     {

    public InArgument<string> DirectoryName;

    protected override void Execute(CodeActivityContext context)
    {
        Activity workflow = new Sequence
        {
            Activities =
            {
                new While
            {

                Condition = GetValue() ,

                Body = new Sequence
                {
                    Activities = {
                        new WriteLine
                            {
                                Text = "Entered"
                            },
                        new WriteLine
                            {
                                Text = "Iterating"
                            },
                            new Delay
                            {
                Duration = System.TimeSpan.Parse("00:00:01")

                            }
                    }
                }

                //Duration = System.TimeSpan.Parse("00:00:01")
            },
            new WriteLine()
            {
                Text = "Exited"
            }
        }
        };
        try
        {
            WorkflowInvoker.Invoke(workflow, TimeSpan.FromSeconds(30));
        }
        catch (TimeoutException ex)
        {
            Console.WriteLine("The File still exist. Build Service has not picked up the file.");
        }
    }


    public bool GetValue()
    {
        bool matched = false;
        matched = File.Exists(@"\\vw189\release\buildservice\conshare.txt");
        return matched;
    }

}

}

当代码执行时,我认为它只是检查一次while条件。因为,我写了一些写行来检查它是如何工作的。我看到循环永远不会结束。我通过在循环运行时删除文件夹中的文件来测试这一点。有一项服务应该每 5 秒选择一次文件。这是为了确定该服务是否已启动并正在运行。

4

1 回答 1

1

同样,我不明白您在做什么,但是在 CodeActivity 中调用工作流是错误的。我会尝试给你一些选择。

选项1:

有一个CodeActivitywhich 返回一个布尔值,指示文件是否存在是标准/正确的方式。然后您可以在您的工作流程中使用此活动:

public sealed class CheckFile : CodeActivity<bool>
{
    public InArgument<string> FilePath { get; set; }

    protected override bool Execute(CodeActivityContext context)
    {
        return File.Exists(FilePath.Get(context));
    }
}

选项 2:

与您的代码一起,您将File.Exists()通过InvokeMethod调用:

var workflow = new Sequence
{
    Activities =
    {
        new While
        {
            Condition = new InvokeMethod<bool>
            {
                TargetType = typeof (File),
                MethodName = "Exists",
                Parameters = { new InArgument<string>("c:\\file.txt") }
            },
            Body = new WriteLine {Text = "File still exists..."}
        },
        new WriteLine {Text = "File deleted."}
    }
};

PS:GetValue当工作流在运行之前构建和评估时,你只被调用一次WorkflowInvoker。如果您希望它是动态使用活动,例如我在上面向您展示的 InvokeMethod。同样,不要仅仅因为,特别是在 CodeActivity 内部而尝试使用工作流。

于 2013-06-06T21:53:22.510 回答