11 lines
269 B
Text
11 lines
269 B
Text
|
//
|
||
|
// Element.custom
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
//
|
||
|
|
||
|
public void SetProperty(string property_name, string value) {
|
||
|
GLib.Value val = new GLib.Value (value);
|
||
|
gst_element_set_property(Handle, property_name, val.Handle);
|
||
|
}
|