當前位置: 首頁>>代碼示例>>C#>>正文


C# JsonSchemaNode.Combine方法代碼示例

本文整理匯總了C#中Newtonsoft.Json.Schema.JsonSchemaNode.Combine方法的典型用法代碼示例。如果您正苦於以下問題:C# JsonSchemaNode.Combine方法的具體用法?C# JsonSchemaNode.Combine怎麽用?C# JsonSchemaNode.Combine使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Newtonsoft.Json.Schema.JsonSchemaNode的用法示例。


在下文中一共展示了JsonSchemaNode.Combine方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AddSchema

 public JsonSchemaNode AddSchema(JsonSchemaNode existingNode, JsonSchema schema)
 {
   string id;
   if (existingNode != null)
   {
     if (existingNode.Schemas.Contains(schema))
       return existingNode;
     id = JsonSchemaNode.GetId(Enumerable.Union<JsonSchema>((IEnumerable<JsonSchema>) existingNode.Schemas, (IEnumerable<JsonSchema>) new JsonSchema[1]
     {
       schema
     }));
   }
   else
     id = JsonSchemaNode.GetId((IEnumerable<JsonSchema>) new JsonSchema[1]
     {
       schema
     });
   if (this._nodes.Contains(id))
     return this._nodes[id];
   JsonSchemaNode jsonSchemaNode = existingNode != null ? existingNode.Combine(schema) : new JsonSchemaNode(schema);
   this._nodes.Add(jsonSchemaNode);
   this.AddProperties(schema.Properties, (IDictionary<string, JsonSchemaNode>) jsonSchemaNode.Properties);
   this.AddProperties(schema.PatternProperties, (IDictionary<string, JsonSchemaNode>) jsonSchemaNode.PatternProperties);
   if (schema.Items != null)
   {
     for (int index = 0; index < schema.Items.Count; ++index)
       this.AddItem(jsonSchemaNode, index, schema.Items[index]);
   }
   if (schema.AdditionalProperties != null)
     this.AddAdditionalProperties(jsonSchemaNode, schema.AdditionalProperties);
   if (schema.Extends != null)
     jsonSchemaNode = this.AddSchema(jsonSchemaNode, schema.Extends);
   return jsonSchemaNode;
 }
開發者ID:Zeludon,項目名稱:FEZ,代碼行數:34,代碼來源:JsonSchemaModelBuilder.cs

示例2: AddSchema

        public JsonSchemaNode AddSchema(JsonSchemaNode existingNode, JsonSchema schema)
        {
            string newId;
            if (existingNode != null)
            {
                if (existingNode.Schemas.Contains(schema))
                {
                    return existingNode;
                }

                newId = JsonSchemaNode.GetId(existingNode.Schemas.Union(new[] { schema }));
            }
            else
            {
                newId = JsonSchemaNode.GetId(new[] { schema });
            }

            if (_nodes.Contains(newId))
            {
                return _nodes[newId];
            }

            JsonSchemaNode currentNode = (existingNode != null)
                ? existingNode.Combine(schema)
                : new JsonSchemaNode(schema);

            _nodes.Add(currentNode);

            AddProperties(schema.Properties, currentNode.Properties);

            AddProperties(schema.PatternProperties, currentNode.PatternProperties);

            if (schema.Items != null)
            {
                for (int i = 0; i < schema.Items.Count; i++)
                {
                    AddItem(currentNode, i, schema.Items[i]);
                }
            }

            if (schema.AdditionalItems != null)
            {
                AddAdditionalItems(currentNode, schema.AdditionalItems);
            }

            if (schema.AdditionalProperties != null)
            {
                AddAdditionalProperties(currentNode, schema.AdditionalProperties);
            }

            if (schema.Extends != null)
            {
                foreach (JsonSchema jsonSchema in schema.Extends)
                {
                    currentNode = AddSchema(currentNode, jsonSchema);
                }
            }

            return currentNode;
        }
開發者ID:Chunshan-Theta,項目名稱:Xamarin_WeatherAPP_iOS_Android-,代碼行數:60,代碼來源:JsonSchemaModelBuilder.cs

示例3: AddSchema

    public JsonSchemaNode AddSchema(JsonSchemaNode existingNode, JsonSchema schema)
    {
      string newId;
      if (existingNode != null)
      {
        if (existingNode.Schemas.Contains(schema))
          return existingNode;

        newId = JsonSchemaNode.GetId(existingNode.Schemas.Union(new[] { schema }));
      }
      else
      {
        newId = JsonSchemaNode.GetId(new[] { schema });
      }

      if (_nodes.Contains(newId))
        return _nodes[newId];

      JsonSchemaNode currentNode = (existingNode != null)
        ? existingNode.Combine(schema)
        : new JsonSchemaNode(schema);

      _nodes.Add(currentNode);

      if (schema.Properties != null)
      {
        foreach (KeyValuePair<string, JsonSchema> property in schema.Properties)
        {
          AddProperty(currentNode, property.Key, property.Value);
        }
      }

      if (schema.Items != null)
      {
        for (int i = 0; i < schema.Items.Count; i++)
        {
          AddItem(currentNode, i, schema.Items[i]);
        }
      }

      if (schema.AdditionalProperties != null)
        AddAdditionalProperties(currentNode, schema.AdditionalProperties);

      if (schema.Extends != null)
        currentNode = AddSchema(currentNode, schema.Extends);

      return currentNode;
    }
開發者ID:runegri,項目名稱:Applicable,代碼行數:48,代碼來源:JsonSchemaModelBuilder.cs

示例4: AddSchema

 // Token: 0x060009E5 RID: 2533
 // RVA: 0x0003EBE8 File Offset: 0x0003CDE8
 public JsonSchemaNode AddSchema(JsonSchemaNode existingNode, JsonSchema schema)
 {
     string id;
     if (existingNode != null)
     {
         if (existingNode.Schemas.Contains(schema))
         {
             return existingNode;
         }
         id = JsonSchemaNode.GetId(Enumerable.Union<JsonSchema>(existingNode.Schemas, new JsonSchema[]
         {
             schema
         }));
     }
     else
     {
         id = JsonSchemaNode.GetId(new JsonSchema[]
         {
             schema
         });
     }
     if (this._nodes.Contains(id))
     {
         return this._nodes[id];
     }
     JsonSchemaNode jsonSchemaNode = (existingNode != null) ? existingNode.Combine(schema) : new JsonSchemaNode(schema);
     this._nodes.Add(jsonSchemaNode);
     this.AddProperties(schema.Properties, jsonSchemaNode.Properties);
     this.AddProperties(schema.PatternProperties, jsonSchemaNode.PatternProperties);
     if (schema.Items != null)
     {
         for (int i = 0; i < schema.Items.Count; i++)
         {
             this.AddItem(jsonSchemaNode, i, schema.Items[i]);
         }
     }
     if (schema.AdditionalItems != null)
     {
         this.AddAdditionalItems(jsonSchemaNode, schema.AdditionalItems);
     }
     if (schema.AdditionalProperties != null)
     {
         this.AddAdditionalProperties(jsonSchemaNode, schema.AdditionalProperties);
     }
     if (schema.Extends != null)
     {
         foreach (JsonSchema current in schema.Extends)
         {
             jsonSchemaNode = this.AddSchema(jsonSchemaNode, current);
         }
     }
     return jsonSchemaNode;
 }
開發者ID:newchild,項目名稱:Project-DayZero,代碼行數:55,代碼來源:JsonSchemaModelBuilder.cs


注:本文中的Newtonsoft.Json.Schema.JsonSchemaNode.Combine方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。