BuildIt.CognitiveServices.FaceAPIV10Extensions.PersonGetaPersonFace C# (CSharp) Метод

PersonGetaPersonFace() публичный статический Метод

Retrieve information about a persisted face (specified by persistedFaceId, personId and its belonging personGroupId). <h4>Http Method</h4> GET
public static PersonGetaPersonFace ( this operations, string personGroupId, string personId, string persistedFaceId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
personGroupId string /// Specifying the person group containing the target person. ///
personId string /// Specifying the target person that the face belongs to. ///
persistedFaceId string /// The persistedFaceId of the target persisted face of the person. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
Результат void
            public static void PersonGetaPersonFace(this IFaceAPIV10 operations, string personGroupId, string personId, string persistedFaceId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IFaceAPIV10)s).PersonGetaPersonFaceAsync(personGroupId, personId, persistedFaceId, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }