scripts
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.ComponentModel.Design
|
||||
{
|
||||
/// <summary>Provides data for the <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanging" /> event. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200003F RID: 63
|
||||
[ComVisible(true)]
|
||||
public sealed class ComponentChangingEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.ComponentChangingEventArgs" /> class.</summary>
|
||||
/// <param name="component">The component that is about to be changed. </param>
|
||||
/// <param name="member">A <see cref="T:System.ComponentModel.MemberDescriptor" /> indicating the member of the component that is about to be changed. </param>
|
||||
// Token: 0x060002A6 RID: 678 RVA: 0x000096B4 File Offset: 0x000078B4
|
||||
public ComponentChangingEventArgs(object component, MemberDescriptor member)
|
||||
{
|
||||
this.component = component;
|
||||
this.member = member;
|
||||
}
|
||||
|
||||
/// <summary>Gets the component that is about to be changed or the component that is the parent container of the member that is about to be changed.</summary>
|
||||
/// <returns>The component that is about to have a member changed.</returns>
|
||||
// Token: 0x170000C2 RID: 194
|
||||
// (get) Token: 0x060002A7 RID: 679 RVA: 0x000096CC File Offset: 0x000078CC
|
||||
public object Component
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.component;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the member that is about to be changed.</summary>
|
||||
/// <returns>A <see cref="T:System.ComponentModel.MemberDescriptor" /> indicating the member that is about to be changed, if known, or null otherwise.</returns>
|
||||
// Token: 0x170000C3 RID: 195
|
||||
// (get) Token: 0x060002A8 RID: 680 RVA: 0x000096D4 File Offset: 0x000078D4
|
||||
public MemberDescriptor Member
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.member;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040000BE RID: 190
|
||||
private object component;
|
||||
|
||||
// Token: 0x040000BF RID: 191
|
||||
private MemberDescriptor member;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user