사용자 식별자에 해당하는 사용자 정보를 가져옵니다.
#include "BS_API.h" int BS2_GetUserInfosEx(void* context, uint32_t deviceId, char* uids, uint32_t uidCount, BS2UserBlobEx* userBlob);
context
: ContextdeviceId
: 장치 식별자uids
: 가져오고자 하는 사용자 식별자 리스트uidCount
: 사용자 식별자 개수userBlob
: 사용자 정보를 저장할 포인터
성공적으로 수행될 경우 BS_SDK_SUCCESS
를 반환하고, 에러가 발생할 경우 상응하는 에러 코드를 반환합니다.
</code>
C#
BS2User user = userList[selection]; BS2UserBlobEx[] userBlob = Util.AllocateStructureArray<BS2UserBlobEx>(1); if (dbHandler.GetUserBlobEx(ref deviceInfo, ref user, ref userBlob[0])) { ///사용자 등록 및 함수추가 } if (result != BS2ErrorCode.BS_SDK_SUCCESS) { Console.WriteLine("Got error({0}).", result); } if (userBlob[0].cardObjs != IntPtr.Zero) { Marshal.FreeHGlobal(userBlob[0].cardObjs); } if (userBlob[0].fingerObjs != IntPtr.Zero) { Marshal.FreeHGlobal(userBlob[0].fingerObjs); } if (userBlob[0].faceObjs != IntPtr.Zero) { Marshal.FreeHGlobal(userBlob[0].faceObjs); }