LicenseException Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Инициализирует новый экземпляр класса LicenseException.
Перегрузки
LicenseException(Type) |
Инициализирует новый экземпляр класса LicenseException для типа компонента, которому было отказано в лицензии. |
LicenseException(SerializationInfo, StreamingContext) |
Устаревшие..
Инициализирует новый экземпляр класса LicenseException с заданными объектами SerializationInfo и StreamingContext. |
LicenseException(Type, Object) |
Инициализирует новый экземпляр класса LicenseException для типа и экземпляра компонента, которому было отказано в лицензии. |
LicenseException(Type, Object, String) |
Инициализирует новый экземпляр класса LicenseException для типа и экземпляра компонента, которому было отказано в лицензии, вместе с выводимым сообщением. |
LicenseException(Type, Object, String, Exception) |
Инициализирует новый экземпляр класса LicenseException для типа и экземпляра компонента, которому было отказано в лицензии, вместе с отображаемым сообщением и исходным вызываемым исключением. |
LicenseException(Type)
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
Инициализирует новый экземпляр класса LicenseException для типа компонента, которому было отказано в лицензии.
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)
Параметры
См. также раздел
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
Применяется к
LicenseException(SerializationInfo, StreamingContext)
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
Внимание!
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Инициализирует новый экземпляр класса LicenseException с заданными объектами SerializationInfo и StreamingContext.
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}")]
protected LicenseException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ComponentModel.LicenseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.LicenseException
[<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
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Параметры
- info
- SerializationInfo
Метод SerializationInfo, используемый для десериализации.
- context
- StreamingContext
Объект назначения, используемый для десериализации.
- Атрибуты
Применяется к
LicenseException(Type, Object)
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
Инициализирует новый экземпляр класса LicenseException для типа и экземпляра компонента, которому было отказано в лицензии.
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)
Параметры
- instance
- Object
Экземпляр компонента, которому не была предоставлена лицензия.
См. также раздел
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
Применяется к
LicenseException(Type, Object, String)
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
Инициализирует новый экземпляр класса LicenseException для типа и экземпляра компонента, которому было отказано в лицензии, вместе с выводимым сообщением.
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)
Параметры
- instance
- Object
Экземпляр компонента, которому не была предоставлена лицензия.
- message
- String
Отображаемое сообщение исключения.
См. также раздел
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
Применяется к
LicenseException(Type, Object, String, Exception)
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
- Исходный код:
- LicenseException.cs
Инициализирует новый экземпляр класса LicenseException для типа и экземпляра компонента, которому было отказано в лицензии, вместе с отображаемым сообщением и исходным вызываемым исключением.
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)
Параметры
- instance
- Object
Экземпляр компонента, которому не была предоставлена лицензия.
- message
- String
Отображаемое сообщение исключения.
См. также раздел
- License
- LicenseContext
- LicenseException
- LicenseManager
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode