public RequestUriMatchCondition(RequestUriMatchConditionType conditionType, RequestUriOperator requestUriOperator) { ConditionType = conditionType; RequestUriOperator = requestUriOperator; MatchValues = new ChangeTrackingList <string>(); Transforms = new ChangeTrackingList <PreTransformCategory>(); }
public RequestUriMatchConditionDefinition(RequestUriMatchConditionType typeDefinition, RequestUriOperator @operator) { TypeDefinition = typeDefinition; Operator = @operator; MatchValues = new ChangeTrackingList <string>(); Transforms = new ChangeTrackingList <PreTransformCategory>(); }
internal RequestUriMatchCondition(RequestUriMatchConditionType conditionType, RequestUriOperator requestUriOperator, bool?negateCondition, IList <string> matchValues, IList <PreTransformCategory> transforms) { ConditionType = conditionType; RequestUriOperator = requestUriOperator; NegateCondition = negateCondition; MatchValues = matchValues; Transforms = transforms; }
internal RequestUriMatchConditionDefinition(RequestUriMatchConditionType typeDefinition, RequestUriOperator @operator, bool?negateCondition, IList <string> matchValues, IList <PreTransformCategory> transforms) { TypeDefinition = typeDefinition; Operator = @operator; NegateCondition = negateCondition; MatchValues = matchValues; Transforms = transforms; }
internal static RequestUriMatchConditionDefinition DeserializeRequestUriMatchConditionDefinition(JsonElement element) { RequestUriMatchConditionType typeName = default; RequestUriOperator @operator = default; Optional <bool> negateCondition = default; Optional <IList <string> > matchValues = default; Optional <IList <PreTransformCategory> > transforms = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("typeName")) { typeName = new RequestUriMatchConditionType(property.Value.GetString()); continue; } if (property.NameEquals("operator")) { @operator = new RequestUriOperator(property.Value.GetString()); continue; } if (property.NameEquals("negateCondition")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } negateCondition = property.Value.GetBoolean(); continue; } if (property.NameEquals("matchValues")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } List <string> array = new List <string>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(item.GetString()); } matchValues = array; continue; } if (property.NameEquals("transforms")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } List <PreTransformCategory> array = new List <PreTransformCategory>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(new PreTransformCategory(item.GetString())); } transforms = array; continue; } } return(new RequestUriMatchConditionDefinition(typeName, @operator, Optional.ToNullable(negateCondition), Optional.ToList(matchValues), Optional.ToList(transforms))); }