Function
GcrCertificatemixin_get_property
Declaration [src]
void
gcr_certificate_mixin_get_property (
GObject* obj,
guint prop_id,
GValue* value,
GParamSpec* pspec
)
Description [src]
Implementation to get various required certificate properties. This should be called from your derived class get_property function, or used as a get_property virtual function.
Example of use as called from derived class get_property function:
...
default:
gcr_certificate_mixin_get_property (obj, prop_id, value, pspec);
break;
}
}
Example of use as get_property function:
...
} .
This function is not directly available to language bindings.
Parameters
obj
-
Type:
GObject
The object.
The data is owned by the caller of the function. prop_id
-
Type:
guint
The property id.
value
-
Type:
GValue
The value to fill in.
The data is owned by the caller of the function. pspec
-
Type:
GParamSpec
The param specification.
The data is owned by the caller of the function.