Exemplo n.º 1
0
 private async void CreateFaceList(string faceListId, string faceListName)
 {
     try
     {
         await _faceServiceClient.CreateFaceListAsync(faceListId, faceListName);
     }
     catch (Exception ex)
     {
         Debug.WriteLine(ex.Message);
     }
 }
Exemplo n.º 2
0
 public static async Task CreateFaceList()
 {
     await faceServiceClient.CreateFaceListAsync(faceList, faceList, faceList);
 }
Exemplo n.º 3
0
 public Task CreateFaceListAsync(string faceListId, string name, string userData)
 {
     return(innerClient.CreateFaceListAsync(faceListId, name, userData));
 }