20 lines
738 B
C#
20 lines
738 B
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides the abstract base class for all licenses. A license is granted to a specific instance of a component.</summary>
|
|
// Token: 0x0200009D RID: 157
|
|
public abstract class License : IDisposable
|
|
{
|
|
/// <summary>When overridden in a derived class, gets the license key granted to this component.</summary>
|
|
/// <returns>A license key granted to this component.</returns>
|
|
// Token: 0x17000159 RID: 345
|
|
// (get) Token: 0x0600052A RID: 1322
|
|
public abstract string LicenseKey { get; }
|
|
|
|
/// <summary>When overridden in a derived class, disposes of the resources used by the license.</summary>
|
|
// Token: 0x0600052B RID: 1323
|
|
public abstract void Dispose();
|
|
}
|
|
}
|