ProxyFactory.type

Get the type info of T that is created.

class ProxyFactory(T)
@property @safe nothrow const
TypeInfo
type
()
if (
(
is(T == class) &&
!isFinalClass!T
&&
!isAbstractClass!T
)
||
(is(T == interface))
)

Return Value

Type: TypeInfo

TypeInfo object of created component.

Meta