OpenApiComponentConflictResolution enumeration

Defines conflict resolution strategies when adding OpenAPI components.

public enum OpenApiComponentConflictResolution

Values

name value description
Error 0 Throws an error if a component with the same name already exists.
Overwrite 1 Overwrites the existing component if a component with the same name already exists.
Ignore 2 Ignores the new component if a component with the same name already exists.

See Also