gstreamer/gstreamer-sharp/Object.custom
Khaled Mohammed 196ad13ffb added missing files
git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@65068 e3ebcda4-bce8-0310-ba0a-eca2169e7518
2006-09-07 16:24:30 +00:00

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;
}
}