public DeliveryRuleSocketAddressCondition(SocketAddressMatchCondition properties) { if (properties == null) { throw new ArgumentNullException(nameof(properties)); } Properties = properties; Name = MatchVariable.SocketAddr; }
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)); }
internal DeliveryRuleSocketAddressCondition(MatchVariable name, SocketAddressMatchCondition properties) : base(name) { Properties = properties; Name = name; }