LicenseException Constructors
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Initialiseert een nieuw exemplaar van de LicenseException klasse.
Overloads
| Name | Description |
|---|---|
| LicenseException(Type) |
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type onderdeel dat een licentie is geweigerd. |
| LicenseException(SerializationInfo, StreamingContext) |
Verouderd.
Initialiseert een nieuw exemplaar van de LicenseException klasse met de opgegeven SerializationInfo en StreamingContext. |
| LicenseException(Type, Object) |
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type en het exemplaar van het onderdeel dat een licentie is geweigerd. |
| LicenseException(Type, Object, String) |
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type en het exemplaar van het onderdeel dat een licentie is geweigerd, samen met een bericht dat moet worden weergegeven. |
| LicenseException(Type, Object, String, Exception) |
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type en het exemplaar van het onderdeel dat een licentie is geweigerd, samen met een bericht dat moet worden weergegeven en de oorspronkelijke uitzondering. |
LicenseException(Type)
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type onderdeel dat een licentie is geweigerd.
public:
LicenseException(Type ^ type);
public LicenseException(Type? type);
public LicenseException(Type type);
new System.ComponentModel.LicenseException : Type -> System.ComponentModel.LicenseException
Public Sub New (type As Type)
Parameters
Zie ook
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
Van toepassing op
LicenseException(SerializationInfo, StreamingContext)
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
Let op
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialiseert een nieuw exemplaar van de LicenseException klasse met de opgegeven SerializationInfo en StreamingContext.
protected:
LicenseException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
protected LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.ComponentModel.LicenseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.LicenseException
new System.ComponentModel.LicenseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.LicenseException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
De SerializationInfo te gebruiken voor deserialisatie.
- context
- StreamingContext
De bestemming die moet worden gebruikt voor deserialisatie.
- Kenmerken
Van toepassing op
LicenseException(Type, Object)
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type en het exemplaar van het onderdeel dat een licentie is geweigerd.
public:
LicenseException(Type ^ type, System::Object ^ instance);
public LicenseException(Type? type, object? instance);
public LicenseException(Type type, object instance);
new System.ComponentModel.LicenseException : Type * obj -> System.ComponentModel.LicenseException
Public Sub New (type As Type, instance As Object)
Parameters
- instance
- Object
Het exemplaar van het onderdeel waaraan geen licentie is verleend.
Zie ook
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
Van toepassing op
LicenseException(Type, Object, String)
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type en het exemplaar van het onderdeel dat een licentie is geweigerd, samen met een bericht dat moet worden weergegeven.
public:
LicenseException(Type ^ type, System::Object ^ instance, System::String ^ message);
public LicenseException(Type? type, object? instance, string? message);
public LicenseException(Type type, object instance, string message);
new System.ComponentModel.LicenseException : Type * obj * string -> System.ComponentModel.LicenseException
Public Sub New (type As Type, instance As Object, message As String)
Parameters
- instance
- Object
Het exemplaar van het onderdeel waaraan geen licentie is verleend.
- message
- String
Het uitzonderingsbericht dat moet worden weergegeven.
Zie ook
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
Van toepassing op
LicenseException(Type, Object, String, Exception)
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
- Bron:
- LicenseException.cs
Initialiseert een nieuw exemplaar van de LicenseException klasse voor het type en het exemplaar van het onderdeel dat een licentie is geweigerd, samen met een bericht dat moet worden weergegeven en de oorspronkelijke uitzondering.
public:
LicenseException(Type ^ type, System::Object ^ instance, System::String ^ message, Exception ^ innerException);
public LicenseException(Type? type, object? instance, string? message, Exception? innerException);
public LicenseException(Type type, object instance, string message, Exception innerException);
new System.ComponentModel.LicenseException : Type * obj * string * Exception -> System.ComponentModel.LicenseException
Public Sub New (type As Type, instance As Object, message As String, innerException As Exception)
Parameters
- instance
- Object
Het exemplaar van het onderdeel waaraan geen licentie is verleend.
- message
- String
Het uitzonderingsbericht dat moet worden weergegeven.
Zie ook
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode