| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // System.ComponentModel.LicenseContext.cs
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- // (C) 2003 Andreas Nahr
- //
- using System.Reflection;
- namespace System.ComponentModel
- {
- public class LicenseContext : IServiceProvider
- {
- [MonoTODO]
- public LicenseContext()
- {
- }
- [MonoTODO]
- public virtual string GetSavedLicenseKey (Type type,
- Assembly resourceAssembly)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual object GetService (Type type)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SetSavedLicenseKey (Type type, string key)
- {
- throw new NotImplementedException();
- }
- public virtual LicenseUsageMode UsageMode {
- get {
- return LicenseUsageMode.Runtime;
- }
- }
- }
- }
|