skip to Main Content

How can i get a list of services in Azure using c#?

I am trying to get a list of app services in Azure using the following , in a winforms app. string clientId = "your_client_id"; string clientSecret = "your_client_secret"; string tenantId = "your_tenant_id"; string subscriptionId = "your_subscription_id"; var credentials = SdkContext.AzureCredentialsFactory.FromServicePrincipal(clientId,…

VIEW QUESTION
Back To Top
Search