14 lines
636 B
C#
14 lines
636 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.ComponentModel.Design
|
|
{
|
|
/// <summary>Represents the method that will handle a <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentRename" /> event.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.Design.ComponentRenameEventArgs" /> that contains the event data. </param>
|
|
// Token: 0x0200031E RID: 798
|
|
// (Invoke) Token: 0x06001C51 RID: 7249
|
|
[ComVisible(true)]
|
|
public delegate void ComponentRenameEventHandler(object sender, ComponentRenameEventArgs e);
|
|
}
|