public TagScoringFunction(string fieldName, double boost, TagScoringParameters parameters) : base(fieldName, boost)
        {
            if (fieldName == null)
            {
                throw new ArgumentNullException(nameof(fieldName));
            }
            if (parameters == null)
            {
                throw new ArgumentNullException(nameof(parameters));
            }

            Parameters = parameters;
            Type       = "tag";
        }
Exemple #2
0
        internal static TagScoringFunction DeserializeTagScoringFunction(JsonElement element)
        {
            TagScoringParameters tag = default;
            string type      = default;
            string fieldName = default;
            double boost     = default;
            ScoringFunctionInterpolation?interpolation = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("tag"))
                {
                    tag = TagScoringParameters.DeserializeTagScoringParameters(property.Value);
                    continue;
                }
                if (property.NameEquals("type"))
                {
                    type = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("fieldName"))
                {
                    fieldName = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("boost"))
                {
                    boost = property.Value.GetDouble();
                    continue;
                }
                if (property.NameEquals("interpolation"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        continue;
                    }
                    interpolation = property.Value.GetString().ToScoringFunctionInterpolation();
                    continue;
                }
            }
            return(new TagScoringFunction(type, fieldName, boost, interpolation, tag));
        }
 internal TagScoringFunction(string type, string fieldName, double boost, ScoringFunctionInterpolation?interpolation, TagScoringParameters parameters) : base(type, fieldName, boost, interpolation)
 {
     Parameters = parameters;
     Type       = type ?? "tag";
 }