DBusAny.get

Get the value stored in the DBusAny object.

Parameters: T = The requested type. The currently stored value must match the requested type exactly.

  1. T get()
    struct DBusAny
    T
    get
    @property const
    (
    T
    )
    (
    )
    if (
    staticIndexOf!(T, BasicTypes) >= 0
    )
  2. T get()
  3. T get()

Return Value

Type: T

The current value of the DBusAny object.

Throws

TypeMismatchException if the DBus type of the current value of the DBusAny object is not the same as the DBus type used to represent T.

Meta