RightpointLabs.Pourcast.Infrastructure.Services.FaceRecognitionService.GetMatch C# (CSharp) Method

GetMatch() private static method

private static GetMatch ( Tag tag ) : string
tag Tag
return string
        private static string GetMatch(Tag tag)
        {
            var result = _GetMatch(tag);
            log.DebugFormat("Got tag with ({0}), but returning {1}", string.Join(", ", tag.Matches.Select(i => string.Format("{0}: {1}", i.UserId.Split('@')[0], i.Confidence))), result);
            return result;
        }