scripts
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
|
||||
namespace System.ComponentModel
|
||||
{
|
||||
/// <summary>Provides functionality required by all components. </summary>
|
||||
// Token: 0x02000088 RID: 136
|
||||
public interface IComponent : IDisposable
|
||||
{
|
||||
/// <summary>Represents the method that handles the <see cref="E:System.ComponentModel.IComponent.Disposed" /> event of a component.</summary>
|
||||
// Token: 0x14000015 RID: 21
|
||||
// (add) Token: 0x060004D5 RID: 1237
|
||||
// (remove) Token: 0x060004D6 RID: 1238
|
||||
event EventHandler Disposed;
|
||||
|
||||
/// <summary>Gets or sets the <see cref="T:System.ComponentModel.ISite" /> associated with the <see cref="T:System.ComponentModel.IComponent" />.</summary>
|
||||
/// <returns>The <see cref="T:System.ComponentModel.ISite" /> object associated with the component; or null, if the component does not have a site.</returns>
|
||||
// Token: 0x17000146 RID: 326
|
||||
// (get) Token: 0x060004D7 RID: 1239
|
||||
// (set) Token: 0x060004D8 RID: 1240
|
||||
ISite Site { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user