Esempio n. 1
0
 private void WriteSchemas(JSchema context, JSchemaCollection schemas, string name)
 {
     if (!schemas.IsNullOrEmpty())
     {
         _writer.WritePropertyName(name);
         _writer.WriteStartArray();
         foreach (JSchema s in schemas)
         {
             ReferenceOrWriteSchema(context, s, null);
         }
         _writer.WriteEndArray();
     }
 }