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