PlatformNotSupportedException Конструкторы
Определение
Инициализирует новый экземпляр класса PlatformNotSupportedException.Initializes a new instance of the PlatformNotSupportedException class.
Перегрузки
PlatformNotSupportedException() |
Инициализирует новый экземпляр класса PlatformNotSupportedException стандартными свойствами.Initializes a new instance of the PlatformNotSupportedException class with default properties. |
PlatformNotSupportedException(String) |
Инициализирует новый экземпляр класса PlatformNotSupportedException с указанным сообщением об ошибке.Initializes a new instance of the PlatformNotSupportedException class with a specified error message. |
PlatformNotSupportedException(SerializationInfo, StreamingContext) |
Инициализирует новый экземпляр класса PlatformNotSupportedException с сериализованными данными.Initializes a new instance of the PlatformNotSupportedException class with serialized data. |
PlatformNotSupportedException(String, Exception) |
Инициализирует новый экземпляр класса PlatformNotSupportedException указанным сообщением об ошибке и ссылкой на внутреннее исключение, вызвавшее данное исключение.Initializes a new instance of the PlatformNotSupportedException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
PlatformNotSupportedException()
Инициализирует новый экземпляр класса PlatformNotSupportedException стандартными свойствами.Initializes a new instance of the PlatformNotSupportedException class with default properties.
public:
PlatformNotSupportedException();
public PlatformNotSupportedException ();
Public Sub New ()
Комментарии
Когда экземпляр PlatformNotSupportedException класса создается путем вызова этого конструктора, инициализируются следующие свойства с указанными значениями:When an instance of the PlatformNotSupportedException class is created by a call to this constructor, the following properties are initialized to the specified values:
Свойство.Property | ЗначениеValue |
---|---|
InnerException | null .null . |
Message | Пустая строка.The empty string. |
PlatformNotSupportedException(String)
Инициализирует новый экземпляр класса PlatformNotSupportedException с указанным сообщением об ошибке.Initializes a new instance of the PlatformNotSupportedException class with a specified error message.
public:
PlatformNotSupportedException(System::String ^ message);
public PlatformNotSupportedException (string message);
new PlatformNotSupportedException : string -> PlatformNotSupportedException
Public Sub New (message As String)
Параметры
- message
- String
Сообщение об ошибке с объяснением причины исключения.The text message that explains the reason for the exception.
Комментарии
Когда экземпляр PlatformNotSupportedException класса создается путем вызова этого конструктора, инициализируются следующие свойства с указанными значениями:When an instance of the PlatformNotSupportedException class is created by a call to this constructor, the following properties are initialized to the specified values:
Свойство.Property | ЗначениеValue |
---|---|
InnerException | null .null . |
Message | Строка сообщения об ошибке.The error message string. |
PlatformNotSupportedException(SerializationInfo, StreamingContext)
Инициализирует новый экземпляр класса PlatformNotSupportedException с сериализованными данными.Initializes a new instance of the PlatformNotSupportedException class with serialized data.
protected:
PlatformNotSupportedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PlatformNotSupportedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new PlatformNotSupportedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> PlatformNotSupportedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Параметры
- info
- SerializationInfo
SerializationInfo, хранящий сериализованные данные объекта, относящиеся к выдаваемому исключению.The SerializationInfo that holds the serialized object data about the exception being thrown.
- context
- StreamingContext
Объект StreamingContext, содержащий контекстные сведения об источнике или назначении.The StreamingContext that contains contextual information about the source or destination.
PlatformNotSupportedException(String, Exception)
Инициализирует новый экземпляр класса PlatformNotSupportedException указанным сообщением об ошибке и ссылкой на внутреннее исключение, вызвавшее данное исключение.Initializes a new instance of the PlatformNotSupportedException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public:
PlatformNotSupportedException(System::String ^ message, Exception ^ inner);
public PlatformNotSupportedException (string message, Exception inner);
new PlatformNotSupportedException : string * Exception -> PlatformNotSupportedException
Public Sub New (message As String, inner As Exception)
Параметры
- message
- String
Сообщение об ошибке, указывающее причину создания исключения.The error message that explains the reason for the exception.
- inner
- Exception
Исключение, которое является причиной текущего исключения.The exception that is the cause of the current exception. Если значение параметра inner
не равно null
, текущее исключение сгенерировано в блоке catch
, обрабатывающем внутреннее исключение.If the inner
parameter is not null
, the current exception is raised in a catch
block that handles the inner exception.
Комментарии
Исключение, созданное как прямой результат предыдущего исключения, должно содержать в свойстве InnerException ссылку на предыдущее исключение.An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. Свойство InnerException возвращает значение, переданное конструктору, или значение null
, если свойство InnerException не передает конструктору значение внутреннего исключения.The InnerException property returns the same value that is passed into the constructor, or null
if the InnerException property does not supply the inner exception value to the constructor.
В следующей таблице представлены исходные значения свойств экземпляра класса PlatformNotSupportedException.The following table shows the initial property values for an instance of PlatformNotSupportedException.
Свойство.Property | ЗначениеValue |
---|---|
InnerException | Ссылка на внутреннее исключение.The inner exception reference. |
Message | Строка сообщения об ошибке.The error message string. |