BuildIt.CognitiveServices.FaceAPIV10Extensions.PersonGetaPerson C# (CSharp) Method

PersonGetaPerson() public static method

Retrieve a person's information, including registered persisted faces, name and userData. <h4>Http Method</h4> GET
public static PersonGetaPerson ( this operations, string personGroupId, string personId, 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. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
return void
            public static void PersonGetaPerson(this IFaceAPIV10 operations, string personGroupId, string personId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IFaceAPIV10)s).PersonGetaPersonAsync(personGroupId, personId, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }