Stay organized with collections
Save and categorize content based on your preferences.
FirebaseAdmin.Auth.UserImportResult
Represents the result of the AbstractFirebaseAuth.ImportUsersAsync(IEnumerable{ImportUserRecordArgs}) API.
Summary
Properties
|
Errors
|
Gets errors associated with a user import.
|
Public attributes
|
FailureCount => this.Errors?.Count ?? 0
|
int
Gets the number of users that failed to be imported.
|
SuccessCount => this.users - this.FailureCount
|
int
Gets the number of users that were imported successfully.
|
Properties
Errors
IReadOnlyList< ErrorInfo > Errors
Gets errors associated with a user import.
Empty list if there were no errors.
Public attributes
FailureCount
int FailureCount => this.Errors?.Count ?? 0
Gets the number of users that failed to be imported.
SuccessCount
int SuccessCount => this.users - this.FailureCount
Gets the number of users that were imported successfully.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-03-24 UTC.
[null,null,["Last updated 2022-03-24 UTC."],[],[],null,["# FirebaseAdmin.Auth.UserImportResult Class Reference\n\nFirebaseAdmin.Auth.UserImportResult\n===================================\n\nRepresents the result of the AbstractFirebaseAuth.ImportUsersAsync(IEnumerable{ImportUserRecordArgs}) API.\n\nSummary\n-------\n\n| ### Properties ||\n|----------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [Errors](#class_firebase_admin_1_1_auth_1_1_user_import_result_1a21519945d662b2ae2c43caa6d9439c60) | `IReadOnlyList\u003c `[ErrorInfo](/docs/reference/admin/dotnet/class/firebase-admin/auth/error-info#class_firebase_admin_1_1_auth_1_1_error_info)` \u003e` Gets errors associated with a user import. |\n\n| ### Public attributes ||\n|----------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|\n| [FailureCount](#class_firebase_admin_1_1_auth_1_1_user_import_result_1ab7d372de61a29a892dc28cc82237eb9f)` =\u003e this.Errors?.Count ?? 0` | `int` Gets the number of users that failed to be imported. |\n| [SuccessCount](#class_firebase_admin_1_1_auth_1_1_user_import_result_1af11c308dbc049175e3c31d205e942292)` =\u003e this.users - this.FailureCount` | `int` Gets the number of users that were imported successfully. |\n\nProperties\n----------\n\n### Errors\n\n```text\nIReadOnlyList\u003c ErrorInfo \u003e Errors\n``` \nGets errors associated with a user import.\n\nEmpty list if there were no errors.\n\nPublic attributes\n-----------------\n\n### FailureCount\n\n```text\nint FailureCount =\u003e this.Errors?.Count ?? 0\n``` \nGets the number of users that failed to be imported. \n\n### SuccessCount\n\n```text\nint SuccessCount =\u003e this.users - this.FailureCount\n``` \nGets the number of users that were imported successfully."]]