Determine if app is running in azure or not

前端 未结 2 1933
失恋的感觉
失恋的感觉 2020-12-17 10:27

I have an asp.net mvc app that is built to run as standard web app in iis or in the cloud.

I need to be able to determine if the app is being hosted in azure(dev fab

相关标签:
2条回答
  • 2020-12-17 11:05

    Could you use the StorageAccountInfo class?:

    In your StorageAccountInfo object, the property "usePathStyleUris" is false when you are pointing to cloud storage and true when you are pointing to Development Storage locally.

    0 讨论(0)
  • 2020-12-17 11:17

    Think I found it:

    Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.IsAvailable
    

    Thanks

    @Wheat: Thanks for such a quick response, makes stackoverflow.com a great resource.

    0 讨论(0)
提交回复
热议问题