protected static uint AddRefImpl()

in ComObjectShadow.cs [75:82]


            protected static uint AddRefImpl(IntPtr thisObject)
            {
                var shadow = ToShadow<ComObjectShadow>(thisObject);

                var obj = (IUnknown)shadow.Callback;

                return obj.AddRef();
            }