private Result QueryInterface()

in ComObjectShadow.cs [32:45]


        private Result QueryInterface(Guid guid, out IntPtr output)
        {
            output = Callback.Shadow.Find(guid);

            if (output == null)
            {
                return Result.NoInterface.Code;
            }

            ((IUnknown)Callback).AddRef();

            return Result.Ok.Code;

        }