gpt4 book ai didi

c# - .NET 获取嵌入式资源文件

转载 作者:太空狗 更新时间:2023-10-29 22:29:52 38 4
gpt4 key购买 nike

我有一个嵌入式资源文件:

enter image description here

我需要将其作为流打开。

我试过的(没用,流为空):

var assembly = Assembly.GetExecutingAssembly();
using (var stream = assembly.GetManifestResourceStream("client_secret.json"))

有什么想法或建议吗?

编辑:我用它做什么:

using (var stream = assembly.GetManifestResourceStream("client_secret.json"))
{
credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
// This OAuth 2.0 access scope allows an application to upload files to the
// authenticated user's YouTube channel, but doesn't allow other types of access.
new[] { YouTubeService.Scope.YoutubeUpload },
"user",
CancellationToken.None
);
}

最佳答案

我解决了这个问题,我必须提供资源的完整命名空间:

using (var stream = assembly.GetManifestResourceStream("Project.Resources.client_secret.json"))

关于c# - .NET 获取嵌入式资源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44577716/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com