我想阅读我在 ServiceConfiguration.cscfg 和 ServiceDefinition.csdef 中完成的自定义设置,并希望通过 C# 中的代码读取该设置。
为此,我创建了 REST 调用以按照msdn 链接中的说明进行部署
在那个 xml 响应配置是 64 基编码字符串中,我认为我的自定义设置在其中(如果我错了,请纠正我!),如果我需要应用程序 ID,那么我可以直接从该 xml 读取私有 ID,但是我可以 rad 我的自定义设置?
<?xml version="1.0" encoding="utf-8"?>
<Deployment xmlns="http://schemas.microsoft.com/windowsazure">
<Name>deployment-name</Name>
.......
.......
<Configuration>base-64-encoded-configuration-file</Configuration>
.......
.......
</Deployment>
提前致谢