CreateIfNotExists throwing ArgumentNullExecption

家住魔仙堡 提交于 2019-12-13 03:56:12

问题


var blobClient = storageAccount.CreateCloudBlobClient();
cont_ref = blobClient.GetContainerReference("foo");
cont_ref.CreateIfNotExists();

The code was working perfectly until recentliy. Now it's throwing an ArgumentNullException.

Q The examples I've seen, demonstrate it like that. What's wrong?

Update The stacktrace contained in the exception reads at System.Enum.TryParseEnum(Type enumType, String value, Boolean ignoreCase, EnumResult& parseResult)

来源:https://stackoverflow.com/questions/43803222/createifnotexists-throwing-argumentnullexecption

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!