ABAddressFormatting Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Classe di utilità che formatta una delle NSDictionary proprietà restituite dal GetVCards(ABPerson[]) metodo .
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.None, "Use the 'Contacts' API instead.")]
public static class ABAddressFormatting
type ABAddressFormatting = class
- Ereditarietà
-
ABAddressFormatting
- Attributi
Commenti
Questa classe funziona con l'oggetto NSDictionaryrestituito dal metodo, come illustrato nell'esempio GetVCards(ABPerson[]) seguente:
NSError err;
var ab = ABAddressBook.Create(out err);
if(err == null && ABAddressBook.GetAuthorizationStatus() == ABAuthorizationStatus.Authorized)
{
var person = ab.GetPeople()[0];
var address = person.GetAddresses()[0];
var formattedAddress = ABAddressFormatting.ToString(address.Value, false);
}
Metodi
ToString(NSDictionary, Boolean) |
Classe di utilità che formatta una delle NSDictionary proprietà restituite dal GetVCards(ABPerson[]) metodo . |