ProxyFactory.identity

Set the identity of proxied object

  1. string identity [@property setter]
    class ProxyFactory(T)
    @property @safe nothrow
    identity
    (
    string identity
    )
    if (
    (
    is(T == class) &&
    !isFinalClass!T
    &&
    !isAbstractClass!T
    )
    ||
    (is(T == interface))
    )
  2. string identity [@property getter]

Parameters

identity string

the identity of proxied object

Return Value

Type: ProxyFactory!T

this

Meta