示例#1
0
        }         // HasBucket

        public static bool HasEquifaxData(this Reply reply)
        {
            return(reply.Exists() && (reply.Equifax != null) && !string.IsNullOrWhiteSpace(reply.Equifax.RawResponse));
        }         // EquifaxData
示例#2
0
        }         // EquifaxData

        public static bool HasEtl(this Reply reply)
        {
            return(reply.Exists() && (reply.Etl != null));
        } // HasEtl
示例#3
0
        }         // HasModels

        public static bool HasBucket(this Reply reply)
        {
            return(reply.HasDecision() && (reply.Inference.Decision.Bucket != null));
        }         // HasBucket
示例#4
0
        }         // HasDecision

        public static bool HasModels(this Reply reply)
        {
            return(reply.HasDecision() && (reply.Inference.Decision.Models != null));
        }         // HasModels
示例#5
0
        }         // HasInference

        public static bool HasDecision(this Reply reply)
        {
            return(reply.HasInference() && (reply.Inference.Decision != null));
        }         // HasDecision
示例#6
0
        }         // Exists

        public static bool HasInference(this Reply reply)
        {
            return(reply.Exists() && (reply.Inference != null));
        }         // HasInference
示例#7
0
 public static bool Exists(this Reply reply)
 {
     return(reply != null);
 }         // Exists