| SchemaIdGenerationHandling Enumeration |
Namespace:
Newtonsoft.Json.Schema.Generation
Assembly:
Newtonsoft.Json.Schema (in Newtonsoft.Json.Schema.dll) Version: 3.0.6
Syntax public enum SchemaIdGenerationHandling
Members
| Member name | Value | Description |
---|
| None | 0 |
Do not generate a schema Id.
|
| TypeName | 1 |
Use the .NET type name as the schema Id.
|
| FullTypeName | 2 |
Use the .NET full type name (namespace plus type name) as the schema Id.
|
| AssemblyQualifiedName | 3 |
Use the assembly qualified .NET type name as the schema Id.
|
See Also