我正在尝试使用Twilio API发送短信,但收到以下错误:System.Net.WebException:无法连接到远程服务器---> System.Net.Sockets.SocketException:无法建立连接,因为目标计算机主动拒绝它。
我认为这是因为应用程序在代理服务器后运行。
如何在配置代理的情况下进行Twilio API调用?
答案 0 :(得分:0)
我没有找到使用Twilio API的方法。
这是我的解决方案:
/// <summary>
/// This class tests if <code>value</code> is instance of the type indicated in <code>parameter</code>.
/// </summary>
public sealed class IsInstanceOfTypeConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
Type type = parameter as Type;
return (type != null) && type.IsInstanceOfType(value);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotSupportedException("IsInstanceOfTypeConverter can only be used for one way conversion.");
}
}