CSHttpClientSample.FacialRec.FacialRec C# (CSharp) 메소드

FacialRec() 공개 메소드

public FacialRec ( string json ) : System
json string
리턴 System
        public FacialRec(string json)
        {
            json = @"{ ""data"" : " + json + "}";
            JObject jObject = JObject.Parse(json);
            var results = jObject["data"];
            foreach (var result in results)
            {
                faceId = (string)result["faceId"];
            }
        }
FacialRec