gstreamer/gstreamer-sharp/Object.custom
Sebastian Dröge 9fd93f9feb Don't override Gst.Object.Dispose()
We can't call gst_object_unref() directly as this will conflict
with the toggle-refs used in glib-sharp. It's also not required
to call gst_object_unref(), it's just a wrapper around g_object_unref()
with some debugging.
2009-04-04 14:31:25 +02:00

6 lines
61 B
Text

public int Refcount {
get { return this.RefCount; }
}