[]
        
Builds a JSON converter for the specified item type using the provided builder.
public static JsonConverter<TConverterItem> BuildConverter<TConverterItem, TItem>(this JsonObjectCoderBuilder<TItem> builder) where TItem : TConverterItem, new()
| Type | Name | Description | 
|---|---|---|
| JsonObjectCoderBuilder<TItem> | builder | The builder used to configure the JSON object coder.  | 
    
| Type | Description | 
|---|---|
| JsonConverter<TConverterItem> | A new instance of JsonConverter<T>.  | 
    
| Name | Description | 
|---|---|
| TConverterItem | The base type of the items to be converted.  | 
    
| TItem | The specific type of the items to be converted,
which must derive from   |