From: Jeremy Koritzinsky Date: Tue, 11 Jul 2023 18:46:35 +0000 (-0700) Subject: Add more docs for new COM source generator types (#88627) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~1134 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eabea90040d359e9552e2821d6f7ab3e249a9a4d;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Add more docs for new COM source generator types (#88627) --- diff --git a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComInterfaceMarshaller.cs b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComInterfaceMarshaller.cs index ee05af5..6551fe1 100644 --- a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComInterfaceMarshaller.cs +++ b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComInterfaceMarshaller.cs @@ -6,7 +6,7 @@ using System.Runtime.Versioning; namespace System.Runtime.InteropServices.Marshalling { /// - /// COM interface marshaller using a StrategyBasedComWrappers instance + /// COM interface marshaller using a instance /// /// /// This marshaller will always pass the flag @@ -22,6 +22,11 @@ namespace System.Runtime.InteropServices.Marshalling { private static readonly Guid? TargetInterfaceIID = StrategyBasedComWrappers.DefaultIUnknownInterfaceDetailsStrategy.GetIUnknownDerivedDetails(typeof(T).TypeHandle)?.Iid; + /// + /// Convert a managed object to a COM interface pointer for the COM interface represented by . + /// + /// The managed object + /// The COM interface pointer public static void* ConvertToUnmanaged(T? managed) { if (managed == null) @@ -35,6 +40,13 @@ namespace System.Runtime.InteropServices.Marshalling return CastIUnknownToInterfaceType(unknown); } + /// + /// Convert a COM interface pointer to a managed object. + /// + /// The COM interface pointer + /// + /// If the passed in COM interface pointer wraps a managed object, this method returns the underlying object. + /// public static T? ConvertToManaged(void* unmanaged) { if (unmanaged == null) @@ -44,6 +56,10 @@ namespace System.Runtime.InteropServices.Marshalling return (T)StrategyBasedComWrappers.DefaultMarshallingInstance.GetOrCreateObjectForComInstance((nint)unmanaged, CreateObjectFlags.Unwrap); } + /// + /// Release a reference to the COM interface pointer. + /// + /// A COM interface pointer. public static void Free(void* unmanaged) { if (unmanaged != null) diff --git a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComObject.cs b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComObject.cs index 0e2fc37..71fca5a 100644 --- a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComObject.cs +++ b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/ComObject.cs @@ -30,6 +30,9 @@ namespace System.Runtime.InteropServices.Marshalling _instancePointer = IUnknownStrategy.CreateInstancePointer(thisPointer); } + /// + /// Release all references to the underlying COM object. + /// ~ComObject() { CacheStrategy.Clear(IUnknownStrategy); @@ -54,11 +57,11 @@ namespace System.Runtime.InteropServices.Marshalling internal bool UniqueInstance { get; init; } /// - /// Releases all references owned by this ComObject if it is a unique instance. + /// Releases all references owned by this if it is a unique instance. /// /// - /// This method does nothing if the ComObject was not created with - /// CreateObjectFlags.UniqueInstance. + /// This method does nothing if the was not created with + /// . /// public void FinalRelease() { diff --git a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComClassAttribute.cs b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComClassAttribute.cs index a3ee297..5403590 100644 --- a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComClassAttribute.cs +++ b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComClassAttribute.cs @@ -3,6 +3,12 @@ namespace System.Runtime.InteropServices.Marshalling { + /// + /// Specifies that code should be generated to enable exposing the attributed class to COM. + /// + /// + /// This attribute is only valid on types that implement at least one -attributed interface. + /// [AttributeUsage(AttributeTargets.Class)] public sealed class GeneratedComClassAttribute : Attribute { diff --git a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComInterfaceAttribute.cs b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComInterfaceAttribute.cs index 8c9ffc7..60bc272 100644 --- a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComInterfaceAttribute.cs +++ b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/GeneratedComInterfaceAttribute.cs @@ -3,6 +3,9 @@ namespace System.Runtime.InteropServices.Marshalling { + /// + /// Specifies that the attributed type is a COM interface and that the source generator should generate code for it. + /// [AttributeUsage(AttributeTargets.Interface)] public class GeneratedComInterfaceAttribute : Attribute { diff --git a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/UniqueComInterfaceMarshaller.cs b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/UniqueComInterfaceMarshaller.cs index 2e48b89..c1e1e1c 100644 --- a/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/UniqueComInterfaceMarshaller.cs +++ b/src/libraries/System.Runtime.InteropServices/src/System/Runtime/InteropServices/Marshalling/UniqueComInterfaceMarshaller.cs @@ -21,6 +21,11 @@ namespace System.Runtime.InteropServices.Marshalling [CustomMarshaller(typeof(CustomMarshallerAttribute.GenericPlaceholder), MarshalMode.Default, typeof(UniqueComInterfaceMarshaller<>))] public static unsafe class UniqueComInterfaceMarshaller { + /// + /// Convert a managed object to a COM interface pointer for the COM interface represented by . + /// + /// The managed object + /// The COM interface pointer public static void* ConvertToUnmanaged(T? managed) { if (managed == null) @@ -34,6 +39,15 @@ namespace System.Runtime.InteropServices.Marshalling return ComInterfaceMarshaller.CastIUnknownToInterfaceType(unknown); } + + /// + /// Convert a COM interface pointer to a managed object. + /// + /// The COM interface pointer + /// A managed object that represents the passed in COM interface pointer. + /// + /// If the passed in COM interface pointer wraps a managed object, this method returns the underlying object. + /// public static T? ConvertToManaged(void* unmanaged) { if (unmanaged == null) @@ -43,6 +57,11 @@ namespace System.Runtime.InteropServices.Marshalling return (T)StrategyBasedComWrappers.DefaultMarshallingInstance.GetOrCreateObjectForComInstance((nint)unmanaged, CreateObjectFlags.Unwrap | CreateObjectFlags.UniqueInstance); } + + /// + /// Release a reference to the COM interface pointer. + /// + /// A COM interface pointer. public static void Free(void* unmanaged) { if (unmanaged != null)