12 references to Any
System.Text.Json (12)
System\Text\Json\Schema\JsonSchema.cs (4)
53
public JsonSchemaType Type { get; set { VerifyMutable(); field = value; } } = JsonSchemaType.
Any
;
102
Count(Type != JsonSchemaType.
Any
);
136
if (Type != JsonSchemaType.
Any
)
315
if (schemaType is JsonSchemaType.
Any
)
System\Text\Json\Schema\JsonSchemaExporter.cs (8)
103
JsonSchemaType schemaType = JsonSchemaType.
Any
;
146
schemaType = JsonSchemaType.
Any
;
154
if (schemaType is not JsonSchemaType.
Any
)
160
derivedSchema.Type = JsonSchemaType.
Any
;
364
JsonSchemaType unionSchemaType = JsonSchemaType.
Any
;
388
unionSchemaType = JsonSchemaType.
Any
;
396
if (unionSchemaType is not JsonSchemaType.
Any
)
400
caseSchema.Type = JsonSchemaType.
Any
;