ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# CustomRequestFormat `Get|Let {String}` 使用在[`WebHelpers.RegisterConverter`](RegisterConverter.md)中注册的转换器将`Body`转换为字符串并设置`Content-Type`标头。 (自动将`RequestFormat`设置为`WebFormat.Custom`) ~~~ WebHelpers.RegisterConverter "csv", "text/csv", "Module.ConvertToCSV", "Module.ParseCSV" Dim Request As New WebRequest Request.CustomRequestFormat = "csv" '// -> Content-Type: "text/csv" '// -> Body converted to string with Module.ConvertToCSV ~~~