Skip to main content

ServiceKnownTypeProvider.Register(IEnumerable<Type>) Method

Registers a collection of custom parameter types.

Namespace: DevExpress.Xpf.Printing

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public static void Register(
    IEnumerable<Type> types
)

Parameters

Name Type Description
types IEnumerable<Type>

A collection of Type objects.

Remarks

If a report employs parameters, they are automatically passed between the server and client if the parameters correspond to one of the following types: String, DateTime, Int32, Float, Double, or Decimal.

And, if parameters of other types are used, these types should be registered on both the server and client, using the Register method.

For more information, see Creating Custom Report Parameters.

See Also