Exemplo n.º 1
0
 public UriPathMatchConditionDefinition(UriPathMatchConditionType typeDefinition, UriPathOperator @operator)
 {
     TypeDefinition = typeDefinition;
     Operator       = @operator;
     MatchValues    = new ChangeTrackingList <string>();
     Transforms     = new ChangeTrackingList <PreTransformCategory>();
 }
Exemplo n.º 2
0
 public UriPathMatchCondition(UriPathMatchConditionType conditionType, UriPathOperator uriPathOperator)
 {
     ConditionType   = conditionType;
     UriPathOperator = uriPathOperator;
     MatchValues     = new ChangeTrackingList <string>();
     Transforms      = new ChangeTrackingList <PreTransformCategory>();
 }
Exemplo n.º 3
0
 internal UriPathMatchConditionDefinition(UriPathMatchConditionType typeDefinition, UriPathOperator @operator, bool?negateCondition, IList <string> matchValues, IList <PreTransformCategory> transforms)
 {
     TypeDefinition  = typeDefinition;
     Operator        = @operator;
     NegateCondition = negateCondition;
     MatchValues     = matchValues;
     Transforms      = transforms;
 }
Exemplo n.º 4
0
 internal UriPathMatchCondition(UriPathMatchConditionType conditionType, UriPathOperator uriPathOperator, bool?negateCondition, IList <string> matchValues, IList <PreTransformCategory> transforms)
 {
     ConditionType   = conditionType;
     UriPathOperator = uriPathOperator;
     NegateCondition = negateCondition;
     MatchValues     = matchValues;
     Transforms      = transforms;
 }
Exemplo n.º 5
0
        internal static UriPathMatchCondition DeserializeUriPathMatchCondition(JsonElement element)
        {
            UriPathMatchConditionType  typeName                 = default;
            UriPathOperator            @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 UriPathMatchConditionType(property.Value.GetString());
                    continue;
                }
                if (property.NameEquals("operator"))
                {
                    @operator = new UriPathOperator(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 UriPathMatchCondition(typeName, @operator, Optional.ToNullable(negateCondition), Optional.ToList(matchValues), Optional.ToList(transforms)));
        }