PhoneNumberFormatter.TryCreate(String, PhoneNumberFormatter) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试为给定区域代码创建 PhoneNumberFormatter ,失败时不会引发。
public:
static void TryCreate(Platform::String ^ regionCode, [Out] PhoneNumberFormatter ^ & phoneNumber);
static void TryCreate(winrt::hstring const& regionCode, [Out] PhoneNumberFormatter const& & phoneNumber);
public static void TryCreate(string regionCode, out PhoneNumberFormatter phoneNumber);
Public Shared Sub TryCreate (regionCode As String, ByRef phoneNumber As PhoneNumberFormatter)
参数
- regionCode
-
String
Platform::String
winrt::hstring
新 PhoneNumberFormatter 的区域代码。
注解
以下代码片段演示如何使用此方法为“BR”区域创建 PhoneNumberFormatter 。
using Windows.Globalization.PhoneNumberFormatting;
PhoneNumberFormatter currentFormatter = null;
PhoneNumberFormatter.TryCreate("BR", out currentFormatter);
if (currentFormatter != null)
{
// use the formatter
}
else
{
// formatter could not be created for the given region.
// put your fallback logic here.
}