Lines Matching refs:getAuthInfo

4826 ### getAuthInfo<sup>8+</sup>
4828 getAuthInfo(callback: AsyncCallback&lt;Array&lt;EnrolledCredInfo&gt;&gt;): void
4859 userIDM.getAuthInfo((err: BusinessError, result: osAccount.EnrolledCredInfo[]) => {
4860 console.log('getAuthInfo err = ' + JSON.stringify(err));
4861 console.log('getAuthInfo result = ' + JSON.stringify(result));
4864 console.log('getAuthInfo exception = ' + JSON.stringify(e));
4868 ### getAuthInfo<sup>8+</sup>
4870 getAuthInfo(authType: AuthType, callback: AsyncCallback&lt;Array&lt;EnrolledCredInfo&gt;&gt;): void
4903 userIDM.getAuthInfo(osAccount.AuthType.PIN,
4905 console.log('getAuthInfo err = ' + JSON.stringify(err));
4906 console.log('getAuthInfo result = ' + JSON.stringify(result));
4909 console.log('getAuthInfo exception = ' + JSON.stringify(e));
4913 ### getAuthInfo<sup>8+</sup>
4915 getAuthInfo(authType?: AuthType): Promise&lt;Array&lt;EnrolledCredInfo&gt;&gt;;
4953 userIDM.getAuthInfo(osAccount.AuthType.PIN).then((result: osAccount.EnrolledCredInfo[]) => {
4954 console.log('getAuthInfo result = ' + JSON.stringify(result))
4956 console.log('getAuthInfo error = ' + JSON.stringify(err));
4959 console.log('getAuthInfo exception = ' + JSON.stringify(e));
4963 ### getAuthInfo<sup>12+</sup>
4965 getAuthInfo(options?: GetAuthInfoOptions): Promise&lt;Array&lt;EnrolledCredInfo&gt;&gt;
5007 userIDM.getAuthInfo(options).then((result: osAccount.EnrolledCredInfo[]) => {
5008 console.log('getAuthInfo result = ' + JSON.stringify(result))
5010 console.log('getAuthInfo error = ' + JSON.stringify(err));
5013 console.log('getAuthInfo exception = ' + JSON.stringify(e));