VS 2015 Update 3 最近向我显示了 DataRequest.FailWithDisplayText 已弃用。有关详细信息,请参阅 MSDN。不幸的是,我什么也没找到。 DataRequest.FailWithDisplayText 的替代方案是什么?
DataRequest.FailWithDisplayText method 别无选择现在。此问题似乎与 Windows 10 10586+ SDK 中添加的此方法的 DeprecatedAttribute
有关。您可以在 FailWithDisplayText
方法上按 F12
找到它。
[Deprecated("FailWithDisplayText is deprecated and might not work on all platforms. For more info, see MSDN.", DeprecationType.Deprecate, 131072, "Windows.Foundation.UniversalApiContract")]
public void FailWithDisplayText(System.String value);
我将使用我们的内部 channel 报告此问题,如果有任何进展,请在此处更新。现在,您可以忽略此消息。 FailWithDisplayText
方法现在应该仍然可以工作。
更新:
此问题已在 Windows 10 Creators Update 中修复。使用 Windows 10 SDK (10.0.15063.0),现在应该没有警告了。
我是一名优秀的程序员,十分优秀!