Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/ComUnregisterFunctionAttribute.cs
T
2026-06-04 11:42:34 +02:00

13 lines
435 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Specifies the method to call when you unregister an assembly for use from COM; this allows for the execution of user-written code during the unregistration process.</summary>
// Token: 0x02000304 RID: 772
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
public sealed class ComUnregisterFunctionAttribute : Attribute
{
}
}