azure-sdk-.net

Azure Blob video is not streaming

自作多情 提交于 2021-02-20 03:35:06
问题 I'm trying to stream my videos from Azure blob, but its not working actually. I checked through different sources and found something interesting to update the x-ms-version . But before doing that I checked it in cloudberry explorer, it says as below. But in browser it says x-ms-version as 2009 like below Anyway I tried updating the x-ms-version using setBlobProperties (Azure PHP SDK) but still its not updating. Am I missing something here? 回答1: Do you have access set to all on your blob

How can I get the list of Azure Regions in C#?

∥☆過路亽.° 提交于 2020-07-23 18:08:28
问题 The Azure SDK for Java has an enum with all of the Azure locations, public and national. Is there similar functionality available for C#? It would be cleaner than using strings. 回答1: Is there similar functionality available for C#? Yes, please refer to Microsoft.Azure.Management.ResourceManager.Fluent, we could get source code from github. More details please refer to screenshot. demo code: string region = Region.AsiaEast.ToString(); 来源: https://stackoverflow.com/questions/44770406/how-can-i

How can I get the list of Azure Regions in C#?

余生颓废 提交于 2020-07-23 18:06:50
问题 The Azure SDK for Java has an enum with all of the Azure locations, public and national. Is there similar functionality available for C#? It would be cleaner than using strings. 回答1: Is there similar functionality available for C#? Yes, please refer to Microsoft.Azure.Management.ResourceManager.Fluent, we could get source code from github. More details please refer to screenshot. demo code: string region = Region.AsiaEast.ToString(); 来源: https://stackoverflow.com/questions/44770406/how-can-i

Publish to Azur fails with 500 internal Server Error

旧街凉风 提交于 2020-07-21 09:27:12
问题 I have a cloud service on Windows Azure, I created a Asp.net WebAPI project and published to the cloud service, that was working fine from Visual Studio to publish before i updated visual studio to update 4 and azure SDK 2.2 to 2.6. But after updating when I publish, I got the following error messages. I tried several times, all failed. Can anyone help me? even i am not able to publish a new created project on new azure service ! 11:00:31 PM - Warning: There are package validation warnings.

Performance of Azure SDK v12 vs Storage Data Movement Library?

雨燕双飞 提交于 2020-06-17 09:45:06
问题 I know that the Storage Data Movement Library is supposed to be faster when uploading and downloading files to and from blob storage, but I am not seeing the performance benefits of it when compared to Azure SDK v12. I got an average of 37.463 seconds with Azure SDK v12 and 41.863 seconds using Storage Data Movement Library (SDML). Here is the code using SDML: namespace FunctionApp { using Microsoft.AspNetCore.Mvc; using Microsoft.Azure.Storage; using Microsoft.Azure.Storage.Blob; using

Performance of Azure SDK v12 vs Storage Data Movement Library?

放肆的年华 提交于 2020-06-17 09:45:05
问题 I know that the Storage Data Movement Library is supposed to be faster when uploading and downloading files to and from blob storage, but I am not seeing the performance benefits of it when compared to Azure SDK v12. I got an average of 37.463 seconds with Azure SDK v12 and 41.863 seconds using Storage Data Movement Library (SDML). Here is the code using SDML: namespace FunctionApp { using Microsoft.AspNetCore.Mvc; using Microsoft.Azure.Storage; using Microsoft.Azure.Storage.Blob; using

Using Azure resource graph with .net SDK

我是研究僧i 提交于 2020-03-25 18:06:51
问题 I'm trying to query my Azure Resource Manager resources using Azure Resource Graph with Azure .NET SDK. Currently I'm stuck at creating a ResourceGraphClient , I'm not really sure what value to provide to the System.Net.Http.DelegatingHandler[] parameter. 回答1: According to my research, If you want to create ResourceGraphClient with System.Net.Http.DelegatingHandler[] directly, it is impossible. Because it is a projected Constructor. For more details, please refer to here Besides, according to

Migrating from Azure SDK 2.0 to Azure SDK 2.3

岁酱吖の 提交于 2020-01-17 04:17:04
问题 We have critical project partly deployed in azure that uses queues, blobs and table storage. Now we using SDK 2.0 and thinking about moving to latest SDK 2.3 but it will cost us some resources especially for load testing with a new Azure SDK. Is there a strong point to update SDK version like critical bug fix, performance issue or maybe useful new feature? Sure, I read release notes but haven't found enough information about it. 回答1: In general we recommend that you always take the latest

Is there a way to manage Azure Function Apps using Azure SDK?

寵の児 提交于 2020-01-16 09:11:28
问题 I would like to write a web app that allows users to write C# scripts and execute them using Azure Functions. I checked Azure SDK documentation and didn't find any nuget packages for managing Function Apps. Is there a way I can: retrieve list of available azure functions deploy azure function update azure function delete azure function using Azure SDK? If not, what would be another way to do it? Update on Jul 8, 2019 I found List and Delete functions in Azure SDK (Microsoft.Azure.Management

Is there a way to manage Azure Function Apps using Azure SDK?

南楼画角 提交于 2020-01-16 09:11:11
问题 I would like to write a web app that allows users to write C# scripts and execute them using Azure Functions. I checked Azure SDK documentation and didn't find any nuget packages for managing Function Apps. Is there a way I can: retrieve list of available azure functions deploy azure function update azure function delete azure function using Azure SDK? If not, what would be another way to do it? Update on Jul 8, 2019 I found List and Delete functions in Azure SDK (Microsoft.Azure.Management