mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-02 01:41:07 +00:00
git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@65068 e3ebcda4-bce8-0310-ba0a-eca2169e7518
13 lines
199 B
Text
13 lines
199 B
Text
|
|
public int Refcount {
|
|
get { return this.RefCount; }
|
|
}
|
|
|
|
|
|
public override void Dispose() {
|
|
if(this.Handle != IntPtr.Zero) {
|
|
Gst.Object.Unref(this.Handle);
|
|
this.Raw = IntPtr.Zero;
|
|
}
|
|
}
|
|
|