Cannot bind parameter #39;log#39; to type TraceWriter(无法将参数“日志绑定到类型 TraceWriter)
问题描述
右键项目->调试->启动新实例时得到以下消息.
<块引用>[1/7/2018 6:48:54 AM] 发生 ScriptHost 错误[1/7/2018 6:48:54AM] 执行的 HTTP 请求:{ [1/7/2018 6:48:54 AM]Microsoft.Azure.WebJobs.Host:索引方法错误'TestFilesIngestJobs.RunScheduleAsync'.Microsoft.Azure.WebJobs.Host:无法将参数日志"绑定到类型TraceWriter.确保绑定支持参数类型.如果您使用绑定扩展(例如 ServiceBus、Timers 等)确保您已调用扩展程序的注册方法在您的启动代码中(例如 config.UseServiceBus()、config.UseTimers()、等等.).[2018 年 1 月 7 日上午 6 点 48 分 54 秒] requestId":dbb282d7-44e2-44b4-907e-877beac9da2d",[1/7/2018 6:48:54 AM] 错误索引方法MasterDataFilesIngestJobs.RunScheduleAsync"[2018 年 1 月 7 日上午 6 点 48 分 54 秒]方法":获取",
要让这个在你的机器上工作,你必须做两件事.遵循此
Getting the below message when doing right click project -> Debug -> Start New Instance.
[1/7/2018 6:48:54 AM] A ScriptHost error has occurred[1/7/2018 6:48:54 AM] Executed HTTP request: { [1/7/2018 6:48:54 AM] Microsoft.Azure.WebJobs.Host: Error indexing method 'TestFilesIngestJobs.RunScheduleAsync'. Microsoft.Azure.WebJobs.Host: Cannot bind parameter 'log' to type TraceWriter. Make sure the parameter Type is supported by the binding. If you're using binding extensions (e.g. ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup code (e.g. config.UseServiceBus(), config.UseTimers(), etc.). [1/7/2018 6:48:54 AM] "requestId": "dbb282d7-44e2-44b4-907e-877beac9da2d", [1/7/2018 6:48:54 AM] Error indexing method 'MasterDataFilesIngestJobs.RunScheduleAsync' [1/7/2018 6:48:54 AM] "method": "GET",
For This to work on your machines, you will have to do two things. Follow the Visual Studio section in this link
- Install Azure-functions-core-tools@core package is installed using npm.
- Create a debug profile and setup as shown below and use that profile while launching it from visual studio.
Please find the image below for your help.
这篇关于无法将参数“日志"绑定到类型 TraceWriter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法将参数“日志"绑定到类型 TraceWriter
基础教程推荐
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
