'对匹配指定绑定约束的类型调用构造函数会抛出异常
本文关键字:类型 约束 调用 构造函数 抛出异常 绑定 | 更新日期: 2023-09-27 18:03:08
所以我试图构建一个访问Etsy的API的程序,到目前为止,我所要做的就是使用OAuth调用它,它抛出这个异常。
这是我的XAML'调用类型' testsy的构造函数。与指定绑定约束匹配的主窗口抛出了异常。行号'3',行位'9'。
<Window x:Class="testEtsy.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid></Grid>
下面是我在mainwindow。cs
中的代码using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace testEtsy
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
string[] orderNumbers = System.IO.File.ReadAllLines(@"F:'ordernumbers.txt");
public static void getOAuthKey()
{
string ConsumerKey = "q6uqzk27z2yw4tl5s4qerdtp";
string ConsumerSecret = "tkjz2mu4x1";
OAuth.Manager m = new OAuth.Manager();
m["consumer_key"] = ConsumerKey;
m["consumer_secret"] = ConsumerSecret;
OAuth.OAuthResponse requestToken =
m.AcquireRequestToken("https://openapi.etsy.com/v2/oauth/request_token?scope=transactions_r", "POST");
}
}
}
最可能出现的异常是以下字段初始化式
string[] orderNumbers = System.IO.File.ReadAllLines(@"F:'ordernumbers.txt");
这段代码将作为MainWindow
构造函数的一部分运行。如果在读取文件时发生异常,这将传播到构造函数之外并导致初始化失败。最可能的原因是该文件不存在或无法访问
项目的目标可能与第三方库的目标不同。作为一个快速测试,将您的平台目标(在Project -> Properties -> Build下)更改为x86。如果可行,请检查您拥有的所有外部库是否为64位,否则只需构建所有x86而不是"任何CPU"。对我来说,罪魁祸首是WebsocketSharp,对你来说,它看起来像OAuth库?