File: Windows\Win32\System\Com\ComScopeTests.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\tests\UnitTests\System.Windows.Forms.Primitives.Tests.csproj (System.Windows.Forms.Primitives.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
 
namespace Windows.Win32.System.Com.Tests;
 
public unsafe class ComScopeTests
{
    [StaFact]
    public void ComScope_NullAfterDispose()
    {
        ComScope<ITestObject> scope = new(ComHelpers.GetComPointer<ITestObject>(new TestObject()));
        scope.IsNull.Should().BeFalse();
        scope.Dispose();
        scope.IsNull.Should().BeTrue();
    }
 
    public class TestObject : ITestObject.Interface, IManagedWrapper<ITestObject>
    {
    }
 
    public readonly unsafe struct ITestObject : IComIID, IVTable<ITestObject, ITestObject.Vtbl>
    {
#pragma warning disable CA1823 // Avoid unused private fields
#pragma warning disable CS0169 // The field 'ComScopeTests.ITestObject._vtbl' is never used
#pragma warning disable IDE0051 // Remove unused private members
        private readonly void** _vtbl;
#pragma warning restore IDE0051
#pragma warning restore CS0169
#pragma warning restore CA1823
 
        internal struct Vtbl
        {
#pragma warning disable CS0649 // Field never assigned to
#pragma warning disable IDE1006 // Naming Styles - matching CsWin32 patterns
            internal delegate* unmanaged[Stdcall]<ITestObject*, Guid*, void**, HRESULT> QueryInterface_1;
            internal delegate* unmanaged[Stdcall]<ITestObject*, uint> AddRef_2;
            internal delegate* unmanaged[Stdcall]<ITestObject*, uint> Release_3;
#pragma warning restore CS0649
#pragma warning restore IDE1006
        }
 
        [ComImport]
        [Guid("630A7370-733D-43E9-8141-685DAE2BDB44")]
        [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
        public interface Interface
        {
        }
 
        static ref readonly Guid IComIID.Guid
        {
            [MethodImpl(MethodImplOptions.AggressiveInlining)]
            get
            {
                ReadOnlySpan<byte> data =
                [
                    // "3BE9EE32-26FB-4E7A-B8A8-25795A7EFB53"
                    0x70, 0x73, 0x0A, 0x63, 0x3D, 0x73, 0xE9, 0x43, 0x81, 0x41, 0x68, 0x5D, 0xAE, 0x2B, 0xDB, 0x44
                ];
 
                return ref Unsafe.As<byte, Guid>(ref MemoryMarshal.GetReference(data));
            }
        }
 
        static void IVTable<ITestObject, Vtbl>.PopulateVTable(Vtbl* vtable)
        {
        }
    }
}