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:
...
}