Show / Hide Table of Contents

    Interface IAddressBookContact

    Provides a cross-platform interface to access contact properties, such as contact’s name, image, phone numbers etc.

    Namespace: VoxelBusters.EssentialKit
    Assembly: cs.temp.dll.dll
    Syntax
    public interface IAddressBookContact

    Properties

    EmailAddresses

    An array of email addresses of the contact. (read-only)

    Declaration
    string[] EmailAddresses { get; }
    Property Value
    Type Description
    System.String[]

    FirstName

    The first name of the contact. (read-only)

    Declaration
    string FirstName { get; }
    Property Value
    Type Description
    System.String

    LastName

    The last name of the contact. (read-only)

    Declaration
    string LastName { get; }
    Property Value
    Type Description
    System.String

    MiddleName

    The middle name of the contact. (read-only)

    Declaration
    string MiddleName { get; }
    Property Value
    Type Description
    System.String

    PhoneNumbers

    An array of phone numbers of the contact. (read-only)

    Declaration
    string[] PhoneNumbers { get; }
    Property Value
    Type Description
    System.String[]

    Methods

    LoadImage(EventCallback<TextureData>)

    Asynchronously loads the profile picture of a contact.

    Declaration
    void LoadImage(EventCallback<TextureData> callback)
    Parameters
    Type Name Description
    EventCallback<TextureData> callback

    The callback to be executed when request is completed.

    Back to top Cross Platform Native Plugins 2.0 : Essential Kit from Voxel Busters