ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.Core.Rdl.Persistence.Xml Namespace / SerializerBuilderExtensions Class / BuildXmlSerializer<T> Method
The type to build the XML serializer for. Must have a parameterless constructor.
The SerializerBuilder.TypeBuilder<TObject> to use for building the XML serializer.

In This Topic
    BuildXmlSerializer<T> Method
    In This Topic
    Builds an XML serializer for the specified type using the provided SerializerBuilder.TypeBuilder<TObject>.
    Syntax
    'Declaration
     
    Public Shared Function BuildXmlSerializer(Of T As {New})( _
       ByVal builder As SerializerBuilder.TypeBuilder(Of T) _
    ) As IXmlItemSerializer
    public static IXmlItemSerializer BuildXmlSerializer<T>( 
       SerializerBuilder.TypeBuilder<T> builder
    )
    where T: new()

    Parameters

    builder
    The SerializerBuilder.TypeBuilder<TObject> to use for building the XML serializer.

    Type Parameters

    T
    The type to build the XML serializer for. Must have a parameterless constructor.

    Return Value

    See Also