Ejemplo n.º 1
0
        public DeliveryRuleSocketAddressCondition(SocketAddressMatchCondition properties)
        {
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Properties = properties;
            Name       = MatchVariable.SocketAddr;
        }
Ejemplo n.º 2
0
        internal static DeliveryRuleSocketAddressCondition DeserializeDeliveryRuleSocketAddressCondition(JsonElement element)
        {
            SocketAddressMatchCondition parameters = default;
            MatchVariable name = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("parameters"))
                {
                    parameters = SocketAddressMatchCondition.DeserializeSocketAddressMatchCondition(property.Value);
                    continue;
                }
                if (property.NameEquals("name"))
                {
                    name = new MatchVariable(property.Value.GetString());
                    continue;
                }
            }
            return(new DeliveryRuleSocketAddressCondition(name, parameters));
        }
Ejemplo n.º 3
0
 internal DeliveryRuleSocketAddressCondition(MatchVariable name, SocketAddressMatchCondition properties) : base(name)
 {
     Properties = properties;
     Name       = name;
 }