编程语言
首页 > 编程语言> > C#Web服务 – 返回然后最后 – 首先发生什么

C#Web服务 – 返回然后最后 – 首先发生什么

作者:互联网

在C#.NET中,我们来看以下示例

[WebMethod]
public int TakeAction()
{
    try {
        //Call method A
        Return 1;
    } catch (Exception e) {
        //Call method B
        Return 0;
    } finally {
        //Call method C
    }
}

现在让我们说方法C是一个长期运行的过程.

在调用方法C之前,或在调用/完成方法之后,调用TakeAction的客户端是否返回返回值?

解决方法:

首先计算返回值,然后执行finally块,然后将控制权传递给调用者(带有返回值).如果finally块将更改返回值的表达式,则此排序很重要.例如:

Console.WriteLine(Foo()); // This prints 10

...

static int Foo()
{
    int x = 10;
    try
    {
        return x;
    }
    finally
    {
        // This executes, but doesn't change the return value
        x = 20;
        // This executes before 10 is written to the console
        // by the caller.
        Console.WriteLine("Before Foo returns");
    }
}

标签:c,net,asp-net,web-services,try-finally
来源: https://codeday.me/bug/20190715/1467788.html