[]
Builds an XML serializer for the specified type using the provided SerializerBuilder.TypeBuilder<TObject>.
public static IXmlItemSerializer BuildXmlSerializer<T>(this SerializerBuilder.TypeBuilder<T> builder) where T : new()
| Type | Name | Description |
|---|---|---|
| SerializerBuilder.TypeBuilder<T> | builder | The SerializerBuilder.TypeBuilder<TObject> to use for building the XML serializer. |
| Type | Description |
|---|---|
| IXmlItemSerializer | A new instance of IXmlItemSerializer for the specified type. |
| Name | Description |
|---|---|
| T | The type to build the XML serializer for. Must have a parameterless constructor. |