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: GObjectThe object. The data is owned by the caller of the function. 
- prop_id
- 
            Type: guintThe property id. 
- value
- 
            Type: GValueThe value to fill in. The data is owned by the caller of the function. 
- pspec
- 
            Type: GParamSpecThe param specification. The data is owned by the caller of the function.