Lines Matching refs:email
2681 queryContactsByEmail(context: Context, email: string, callback: AsyncCallback<Array<Contact&…
2683 Queries contacts based on the specified email address. This API uses an asynchronous callback to re…
2694 | email | string | Yes | Email address of the co…
2710 contact.queryContactsByEmail(context, 'xxx@email.com', (err: BusinessError, data) => {
2721 queryContactsByEmail(email: string, callback: AsyncCallback<Array<Contact>>): void
2723 Queries contacts based on the specified email address. This API uses an asynchronous callback to re…
2737 | email | string | Yes | Email address of the co…
2744 contact.queryContactsByEmail('xxx@email.com', (err: BusinessError, data) => {
2755 queryContactsByEmail(context: Context, email: string, holder: Holder, callback: AsyncCallback<A…
2757 Queries a contact based on the specified email and holder. This API uses an asynchronous callback t…
2768 | email | string | Yes | Email address of the co…
2785 contact.queryContactsByEmail(context, 'xxx@email.com', {
2800 queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback<Array<Contact>…
2802 Queries a contact based on the specified email and holder. This API uses an asynchronous callback t…
2816 | email | string | Yes | Email address of the co…
2824 contact.queryContactsByEmail('xxx@email.com', {
2839 queryContactsByEmail(context: Context, email: string, attrs: ContactAttributes, callback: AsyncCal…
2841 Queries a contact based on the specified email and attributes. This API uses an asynchronous callba…
2852 | email | string | Yes | Email address of the co…
2869 contact.queryContactsByEmail(context, 'xxx@email.com', {
2882 queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback<Array<C…
2884 Queries a contact based on the specified email and attributes. This API uses an asynchronous callba…
2898 | email | string | Yes | Email address of the co…
2906 contact.queryContactsByEmail('xxx@email.com', {
2919 queryContactsByEmail(context: Context, email: string, holder: Holder, attrs: ContactAttributes, ca…
2921 Queries a contact based on the specified email, holder, and attributes. This API uses an asynchrono…
2932 | email | string | Yes | Email address of the co…
2950 contact.queryContactsByEmail(context, 'xxx@email.com', {
2967 queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallba…
2969 Queries a contact based on the specified email, holder, and attributes. This API uses an asynchrono…
2983 | email | string | Yes | Email address of the co…
2992 contact.queryContactsByEmail('xxx@email.com', {
3009 queryContactsByEmail(context: Context, email: string, holder?: Holder, attrs?: ContactAttributes):…
3011 Queries a contact based on the specified email, holder, and attributes. This API uses a promise to …
3022 | email | string | Yes | Email address of the contact. …
3045 let promise = contact.queryContactsByEmail(context, 'xxx@email.com', {
3061 queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise<Array&l…
3063 Queries a contact based on the specified email, holder, and attributes. This API uses a promise to …
3077 | email | string | Yes | Email address of the contact. |
3091 let promise = contact.queryContactsByEmail('xxx@email.com', {
3782 | emails | [Email](#email)[] | Yes | Yes | List of email address…
3887 Defines a contact's email.
3908 | email | string | Yes | Yes | Email addresses |
3919 let email: contact.Email = {
3920 email: "xxx@email.com",
3929 let email = new contact.Email();
3930 email.email = "xxx@email.com";