hdac SDK
SDK for hdac blockchain development
클래스 | 열거형 타입 | 함수
Newtonsoft.Json.Schema 네임스페이스 참조

클래스

class  Extensions
 Contains the JSON schema extension methods.
 
class  JsonSchema
 An in-memory representation of a JSON Schema. 더 자세히 ...
 
class  JsonSchemaBuilder
 
class  JsonSchemaConstants
 
class  JsonSchemaException
 Returns detailed information about the schema exception. 더 자세히 ...
 
class  JsonSchemaGenerator
 Generates a JsonSchema from a specified Type. 더 자세히 ...
 
class  JsonSchemaModel
 
class  JsonSchemaModelBuilder
 
class  JsonSchemaNode
 
class  JsonSchemaNodeCollection
 
class  JsonSchemaResolver
 Resolves JsonSchema from an id. 더 자세히 ...
 
class  JsonSchemaWriter
 
class  ValidationEventArgs
 Returns detailed information related to the ValidationEventHandler. 더 자세히 ...
 

열거형 타입

enum  JsonSchemaType {
  JsonSchemaType.None = 0, JsonSchemaType.String = 1, JsonSchemaType.Float = 2, JsonSchemaType.Integer = 4,
  JsonSchemaType.Boolean = 8, JsonSchemaType.Object = 16, JsonSchemaType.Array = 32, JsonSchemaType.Null = 64,
  JsonSchemaType.Any = String | Float | Integer | Boolean | Object | Array | Null
}
 The value types allowed by the JsonSchema. 더 자세히 ...
 
enum  UndefinedSchemaIdHandling { UndefinedSchemaIdHandling.None = 0, UndefinedSchemaIdHandling.UseTypeName = 1, UndefinedSchemaIdHandling.UseAssemblyQualifiedName = 2 }
 Specifies undefined schema Id handling options for the JsonSchemaGenerator. 더 자세히 ...
 

함수

delegate void ValidationEventHandler (object sender, ValidationEventArgs e)
 Represents the callback method that will handle JSON schema validation events and the ValidationEventArgs. 더 자세히 ...
 

열거형 타입 문서화

The value types allowed by the JsonSchema.

열거형 멤버
None 

No type specified.

String 

String type.

Float 

Float type.

Integer 

Integer type.

Boolean 

Boolean type.

Object 

Object type.

Array 

Array type.

Null 

Null type.

Any 

Any type.

Specifies undefined schema Id handling options for the JsonSchemaGenerator.

열거형 멤버
None 

Do not infer a schema Id.

UseTypeName 

Use the .NET type name as the schema Id.

UseAssemblyQualifiedName 

Use the assembly qualified .NET type name as the schema Id.

함수 문서화

delegate void Newtonsoft.Json.Schema.ValidationEventHandler ( object  sender,
ValidationEventArgs  e 
)

Represents the callback method that will handle JSON schema validation events and the ValidationEventArgs.