IContactLocationFieldFactory.CreateLocation 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CreateLocation(String) |
创建一个字段,以包含有关联系人位置的信息。 注意 IContactLocationFieldFactory 可能会在Windows 8.1后更改或不可用。 请改用 ContactAddress。 |
CreateLocation(String, ContactFieldCategory) |
创建一个字段,以包含有关联系人位置的信息。 注意 IContactLocationFieldFactory 可能会在Windows 8.1后更改或不可用。 请改用 ContactAddress。 |
CreateLocation(String, ContactFieldCategory, String, String, String, String, String) |
创建一个字段,以包含有关联系人位置的信息。 注意 IContactLocationFieldFactory 可能会在Windows 8.1后更改或不可用。 请改用 ContactAddress。 |
CreateLocation(String)
创建一个字段,以包含有关联系人位置的信息。
注意
IContactLocationFieldFactory 可能会在Windows 8.1后更改或不可用。 请改用 ContactAddress。
public:
ContactLocationField ^ CreateLocation(Platform::String ^ unstructuredAddress);
/// [Windows.Foundation.Metadata.Overload("CreateLocation_Default")]
ContactLocationField CreateLocation(winrt::hstring const& unstructuredAddress);
[Windows.Foundation.Metadata.Overload("CreateLocation_Default")]
public ContactLocationField CreateLocation(string unstructuredAddress);
function createLocation(unstructuredAddress)
Public Function CreateLocation (unstructuredAddress As String) As ContactLocationField
参数
- unstructuredAddress
-
String
Platform::String
winrt::hstring
非结构化格式的联系人地址。
返回
可以添加到 Contact 对象的位置字段。
- 属性
Windows 要求
应用功能 |
contactsSystem
|
另请参阅
- CreateLocation(String, ContactFieldCategory)
- CreateLocation(String, ContactFieldCategory, String, String, String, String, String)
适用于
CreateLocation(String, ContactFieldCategory)
创建一个字段,以包含有关联系人位置的信息。
注意
IContactLocationFieldFactory 可能会在Windows 8.1后更改或不可用。 请改用 ContactAddress。
public:
ContactLocationField ^ CreateLocation(Platform::String ^ unstructuredAddress, ContactFieldCategory category);
/// [Windows.Foundation.Metadata.Overload("CreateLocation_Category")]
ContactLocationField CreateLocation(winrt::hstring const& unstructuredAddress, ContactFieldCategory const& category);
[Windows.Foundation.Metadata.Overload("CreateLocation_Category")]
public ContactLocationField CreateLocation(string unstructuredAddress, ContactFieldCategory category);
function createLocation(unstructuredAddress, category)
Public Function CreateLocation (unstructuredAddress As String, category As ContactFieldCategory) As ContactLocationField
参数
- unstructuredAddress
-
String
Platform::String
winrt::hstring
非结构化格式的联系人地址。
- category
- ContactFieldCategory
字段所属的类别。
返回
可以添加到 Contact 对象的位置字段。
- 属性
Windows 要求
应用功能 |
contactsSystem
|
另请参阅
- CreateLocation(String)
- CreateLocation(String, ContactFieldCategory, String, String, String, String, String)
适用于
CreateLocation(String, ContactFieldCategory, String, String, String, String, String)
创建一个字段,以包含有关联系人位置的信息。
注意
IContactLocationFieldFactory 可能会在Windows 8.1后更改或不可用。 请改用 ContactAddress。
public:
ContactLocationField ^ CreateLocation(Platform::String ^ unstructuredAddress, ContactFieldCategory category, Platform::String ^ street, Platform::String ^ city, Platform::String ^ region, Platform::String ^ country, Platform::String ^ postalCode);
/// [Windows.Foundation.Metadata.Overload("CreateLocation_All")]
ContactLocationField CreateLocation(winrt::hstring const& unstructuredAddress, ContactFieldCategory const& category, winrt::hstring const& street, winrt::hstring const& city, winrt::hstring const& region, winrt::hstring const& country, winrt::hstring const& postalCode);
[Windows.Foundation.Metadata.Overload("CreateLocation_All")]
public ContactLocationField CreateLocation(string unstructuredAddress, ContactFieldCategory category, string street, string city, string region, string country, string postalCode);
function createLocation(unstructuredAddress, category, street, city, region, country, postalCode)
Public Function CreateLocation (unstructuredAddress As String, category As ContactFieldCategory, street As String, city As String, region As String, country As String, postalCode As String) As ContactLocationField
参数
- unstructuredAddress
-
String
Platform::String
winrt::hstring
非结构化格式的联系人地址。
- category
- ContactFieldCategory
字段所属的类别。
- street
-
String
Platform::String
winrt::hstring
街道地址。
- city
-
String
Platform::String
winrt::hstring
地址的城市名称。
- region
-
String
Platform::String
winrt::hstring
地址的区域名称。
- country
-
String
Platform::String
winrt::hstring
地址所在的国家/地区的名称。
- postalCode
-
String
Platform::String
winrt::hstring
地址的邮政编码。
返回
可以添加到 Contact 对象的位置字段。
- 属性
Windows 要求
应用功能 |
contactsSystem
|