| 1234567891011121314151617181920212223242526272829 |
- //
- // System.ComponentModel.LicenseProvider
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- namespace System.ComponentModel
- {
- public abstract class LicenseProvider
- {
- [MonoTODO]
- protected LicenseProvider()
- {
- }
- public abstract License GetLicense (LicenseContext context,
- Type type,
- object instance,
- bool allowExceptions);
- [MonoTODO]
- ~LicenseProvider()
- {
- }
- }
- }
|