13 lines
435 B
C#
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
|
|
{
|
|
}
|
|
}
|