LicenseProviderAttribute-Klasse
Gibt den mit einer Klasse zu verwendenden LicenseProvider an. Diese Klasse kann nicht geerbt werden.
Namespace: System.ComponentModel
Assembly: System (in system.dll)
Syntax
'Declaration
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple:=False, Inherited:=False)> _
Public NotInheritable Class LicenseProviderAttribute
Inherits Attribute
'Usage
Dim instance As LicenseProviderAttribute
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
public sealed class LicenseProviderAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple=false, Inherited=false)]
public ref class LicenseProviderAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=false) */
public final class LicenseProviderAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=false)
public final class LicenseProviderAttribute extends Attribute
Hinweise
Wenn Sie eine Komponente erstellen, die Sie lizenzieren möchten, müssen Sie den LicenseProvider angeben, indem Sie die Komponente mit einem LicenseProviderAttribute markieren.
Rufen Sie mit der LicenseProvider-Eigenschaft den Type von LicenseProvider ab.
Weitere Informationen über Attribute finden Sie unter Übersicht über Attribute und Erweitern von Metadaten mithilfe von Attributen. Weitere Informationen über die Lizenzierung finden Sie unter Gewusst wie: Lizenzieren von Komponenten und Steuerelementen.
Hinweis
Das auf diese Klasse angewendete HostProtectionAttribute-Attribut besitzt den Resources-Eigenschaftenwert SharedState. Das HostProtectionAttribute hat keine Auswirkungen auf Desktopanwendungen (die normalerweise durch Doppelklicken auf ein Symbol, Eingeben eines Befehls oder eines URL in einem Browser gestartet werden). Weitere Informationen finden Sie unter der HostProtectionAttribute-Klasse oder unter SQL Server-Programmierung und Hostschutzattribute.
Beispiel
Im folgenden Codebeispiel wird der LicFileLicenseProvider als Lizenzgeber für MyControl
verwendet.
<LicenseProvider(GetType(LicFileLicenseProvider))> _
Public Class MyControl
Inherits Control
' Insert code here.
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
' All components must dispose of the licenses they grant.
' Insert code here to dispose of the license.
End Sub
End Class
[LicenseProvider(typeof(LicFileLicenseProvider))]
public class MyControl : Control {
// Insert code here.
protected override void Dispose(bool disposing) {
/* All components must dispose of the licenses they grant.
* Insert code here to dispose of the license. */
}
}
[LicenseProvider(LicFileLicenseProvider::typeid)]
ref class MyControl: public Control
{
protected:
// Insert code here.
~MyControl()
{
/* All components must dispose of the licenses they grant.
* Insert code here to dispose of the license. */
}
};
/** @attribute LicenseProvider(LicFileLicenseProvider.class)
*/
public class MyControl extends Control
{
// Insert code here.
protected void Dispose(boolean disposing)
{
/* All components must dispose of the licenses they grant.
Insert code here to dispose of the license.
*/
} //Dispose
} //MyControl
public LicenseProvider(LicFileLicenseProvider)
class MyControl extends Control{
// Insert code here.
function Dispose(){
// All components must dispose of the licenses they grant.
// Insert code here to dispose of the license.
} //Dispose
} //MyControl
Im nächsten Codebeispiel wird eine Instanz der MyControl
-Klasse erstellt. Anschließend werden die Attribute für die Klasse abgerufen, und der Name des von myNewControl
verwendeten Lizenzgebers wird ausgegeben.
Public Shared Function Main() As Integer
' Creates a new component.
Dim myNewControl As New MyControl()
' Gets the attributes for the component.
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(myNewControl)
' Prints the name of the license provider by retrieving the LicenseProviderAttribute
' from the AttributeCollection.
Dim myAttribute As LicenseProviderAttribute = _
CType(attributes(GetType(LicenseProviderAttribute)), LicenseProviderAttribute)
Console.WriteLine(("The license provider for this class is: " & _
myAttribute.LicenseProvider.ToString()))
Return 0
End Function
public static int Main() {
// Creates a new component.
MyControl myNewControl = new MyControl();
// Gets the attributes for the component.
AttributeCollection attributes = TypeDescriptor.GetAttributes(myNewControl);
/* Prints the name of the license provider by retrieving the LicenseProviderAttribute
* from the AttributeCollection. */
LicenseProviderAttribute myAttribute = (LicenseProviderAttribute)attributes[typeof(LicenseProviderAttribute)];
Console.WriteLine("The license provider for this class is: " + myAttribute.LicenseProvider.ToString());
return 0;
}
int main()
{
// Creates a new component.
MyControl^ myNewControl = gcnew MyControl;
// Gets the attributes for the component.
AttributeCollection^ attributes = TypeDescriptor::GetAttributes( myNewControl );
/* Prints the name of the license provider by retrieving the LicenseProviderAttribute
* from the AttributeCollection. */
LicenseProviderAttribute^ myAttribute = dynamic_cast<LicenseProviderAttribute^>(attributes[ LicenseProviderAttribute::typeid ]);
Console::WriteLine( "The license provider for this class is: {0}", myAttribute->LicenseProvider );
return 0;
}
public static void main(String[] args)
{
// Creates a new component.
Class1 lObjClass1 = new Class1();
MyControl myNewControl = lObjClass1.new MyControl();
// Gets the attributes for the component.
AttributeCollection attributes =
TypeDescriptor.GetAttributes(myNewControl);
/* Prints the name of the license provider by
retrieving the LicenseProviderAttribute
from the AttributeCollection.
*/
LicenseProviderAttribute myAttribute = ((LicenseProviderAttribute)
(attributes.get_Item(LicenseProviderAttribute.class.ToType())));
Console.WriteLine(("The license provider for this class is: "
+ myAttribute.get_LicenseProvider().ToString()));
} //main
// Creates a new component.
var myNewControl : MyControl = new MyControl()
// Gets the attributes for the component.
var attributes : AttributeCollection = TypeDescriptor.GetAttributes(myNewControl)
// Prints the name of the license provider by retrieving the LicenseProviderAttribute
// from the AttributeCollection.
var myAttribute : LicenseProviderAttribute = LicenseProviderAttribute(attributes(LicenseProviderAttribute))
Console.WriteLine("The license provider for this class is: " + myAttribute.LicenseProvider.ToString())
Vererbungshierarchie
System.Object
System.Attribute
System.ComponentModel.LicenseProviderAttribute
Threadsicherheit
Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
LicenseProviderAttribute-Member
System.ComponentModel-Namespace
License-Klasse
LicenseContext-Klasse
LicenseException-Klasse
LicenseManager-Klasse
LicenseProvider-Klasse
LicFileLicenseProvider
LicenseUsageMode