gpt4 book ai didi

c# - MediaCapture 中的 InitializeAsync 不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 23:46:35 25 4
gpt4 key购买 nike

当我这样做时:

try
{
MediaCapture mc = new MediaCapture();
await mc.InitializeAsync();

if (mc.VideoDeviceController.TorchControl.Supported == true)
{
mc.VideoDeviceController.TorchControl.Enabled = true;
if (mc.VideoDeviceController.TorchControl.PowerSupported == true)
{
mc.VideoDeviceController.TorchControl.PowerPercent = 100;
}
}
}
catch(Exception ex)
{
//TODO: Report exception to user
}

我遇到了这个错误:

错误 1 ​​'await' 运算符只能在异步方法中使用。考虑使用“异步”修饰符标记此方法并将其返回类型更改为“任务”。

所以我尝试“等待异步 mc.InitializeAsync();”,然后我得到了这个错误:

'错误 1;预期'

我做错了什么?也许图书馆有问题?谢谢

最佳答案

你需要像这样改变你的方法:

public async Task Foo()
{
//code
try
{
MediaCapture mc = new MediaCapture();
await mc.InitializeAsync();

if (mc.VideoDeviceController.TorchControl.Supported == true)
{
mc.VideoDeviceController.TorchControl.Enabled = true;
if (mc.VideoDeviceController.TorchControl.PowerSupported == true)
{
mc.VideoDeviceController.TorchControl.PowerPercent = 100;
}
}
}
catch(Exception ex)
{
//TODO: Report exception to user
}

}

关于c# - MediaCapture 中的 InitializeAsync 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27447976/

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