LicenseContext Class

Definition

Specifies when you can use a licensed object and provides a way of obtaining additional services needed to support licenses running within its domain.

public ref class LicenseContext : IServiceProvider
public class LicenseContext : IServiceProvider
type LicenseContext = class
    interface IServiceProvider
Public Class LicenseContext
Implements IServiceProvider
Inheritance
LicenseContext
Derived
Implements

Remarks

This class provides the default LicenseContext. It implements only run-time support and does not support saved license keys.

Notes to Inheritors

If you want to implement design-time license support, you must inherit from this class, and override the following members: UsageMode, GetSavedLicenseKey(Type, Assembly), GetService(Type), and SetSavedLicenseKey(Type, String). If you want to implement saved license keys, override the GetSavedLicenseKey(Type, Assembly) and SetSavedLicenseKey(Type, String) methods.

For more information about licensing, see How to: License Components and Controls.

Constructors

LicenseContext()

Initializes a new instance of the LicenseContext class.

Properties

UsageMode

When overridden in a derived class, gets a value that specifies when you can use a license.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetSavedLicenseKey(Type, Assembly)

When overridden in a derived class, returns a saved license key for the specified type, from the specified resource assembly.

GetService(Type)

Gets the requested service, if it is available.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
SetSavedLicenseKey(Type, String)

When overridden in a derived class, sets a license key for the specified type.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also