2

Suppose I deploy an Azure role supplying a service package and a service configuration. Then I change the configuration one or more times without redeploying the role.

Is it possible to get the initial configuration?

4

2 回答 2

1

RoleEnvironment API仅反映当前值。您可以处理RoleEnvironment.Changing事件并从那里跟踪配置更改。

于 2012-04-10T09:23:37.200 回答
1

您可以通过多种方式更改服务配置:

  • 使用管理门户

    1. 点击部署(它必须处于就绪状态!)
    2. 单击“配置” - 编辑配置。 在此处输入图像描述
  • 使用管理 REST API 的更改部署配置方法。

如果您选择第二个选项,您可以创建自己的类或使用,例如这个 NuGet 包

但是我不认为(我不知道一种方法)一旦更改就可以获得初始服务配置。

于 2012-04-10T10:20:34.183 回答