[]
Configures a JsonObjectCoderBuilder<TObject> to handle a specific report item type.
public static JsonObjectCoderBuilder<T> ReportItem<T>(this JsonObjectCoderBuilder<T> coder, string typeName) where T : ReportItem, new()
Type | Name | Description |
---|---|---|
JsonObjectCoderBuilder<T> | coder | The current JsonObjectCoderBuilder<TObject> to configure. |
string | typeName | A string value indicating the name of the report item type. |
Type | Description |
---|---|
JsonObjectCoderBuilder<T> | The configured JsonObjectCoderBuilder<TObject> instance. |
Name | Description |
---|---|
T | The type of the report item, which must derive from ReportItem. |