NJsonSchema.Visitors.AsyncJsonSchemaVisitorBase
Visitor to transform an object with JsonSchema objects.
namespace NJsonSchema.Visitors
{
public abstract class AsyncJsonSchemaVisitorBase : AsyncJsonReferenceVisitorBase
{
protected abstract Task<JsonSchema> VisitSchemaAsync(JsonSchema schema, string path, string typeNameHint, CancellationToken cancellationToken);
protected AsyncJsonSchemaVisitorBase();
}
}