Beispiel #1
0
        public DeliveryRuleHttpVersionCondition(HttpVersionMatchCondition properties)
        {
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Properties = properties;
            Name       = MatchVariable.HttpVersion;
        }
Beispiel #2
0
        internal static DeliveryRuleHttpVersionCondition DeserializeDeliveryRuleHttpVersionCondition(JsonElement element)
        {
            HttpVersionMatchCondition parameters = default;
            MatchVariable             name       = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("parameters"))
                {
                    parameters = HttpVersionMatchCondition.DeserializeHttpVersionMatchCondition(property.Value);
                    continue;
                }
                if (property.NameEquals("name"))
                {
                    name = new MatchVariable(property.Value.GetString());
                    continue;
                }
            }
            return(new DeliveryRuleHttpVersionCondition(name, parameters));
        }
Beispiel #3
0
 internal DeliveryRuleHttpVersionCondition(MatchVariable name, HttpVersionMatchCondition properties) : base(name)
 {
     Properties = properties;
     Name       = name;
 }