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?
RoleEnvironment API仅反映当前值。您可以处理RoleEnvironment.Changing事件并从那里跟踪配置更改。
您可以通过多种方式更改服务配置:
使用管理门户
使用管理 REST API 的更改部署配置方法。
如果您选择第二个选项,您可以创建自己的类或使用,例如这个 NuGet 包。
但是我不认为(我不知道一种方法)一旦更改就可以获得初始服务配置。