ProxyFactory.identity

Get the identity of proxied object.

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

Return Value

Type: string

string identity

Meta