FileFormatException 构造函数

定义

创建 FileFormatException 类的新实例。

重载

FileFormatException()

创建 FileFormatException 类的新实例。

FileFormatException(String)

使用指定的错误消息创建 FileFormatException 类的新实例。

FileFormatException(Uri)

使用源 URI 值创建 FileFormatException 类的一个新实例。

FileFormatException(SerializationInfo, StreamingContext)
已过时.

使用序列化数据创建 FileFormatException 类的一个新实例,并对其进行初始化。 在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。

FileFormatException(String, Exception)

使用指定的错误消息和异常类型创建 FileFormatException 类的一个新实例。

FileFormatException(Uri, Exception)

使用源 URI 值和异常类型创建 FileFormatException 类的一个新实例。

FileFormatException(Uri, String)

使用源 URI 值和指定的错误消息创建 FileFormatException 类的一个新实例。

FileFormatException(Uri, String, Exception)

使用源 URI 值、指定的错误消息和异常类型创建 FileFormatException 类的一个新实例。

FileFormatException()

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

创建 FileFormatException 类的新实例。

public:
 FileFormatException();
public FileFormatException ();
Public Sub New ()

注解

此构造函数使用描述错误的默认系统消息,例如“输入文件或数据流不符合预期的文件格式规范”。此消息考虑了当前系统区域性。

适用于

FileFormatException(String)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

使用指定的错误消息创建 FileFormatException 类的新实例。

public:
 FileFormatException(System::String ^ message);
public FileFormatException (string message);
public FileFormatException (string? message);
new System.IO.FileFormatException : string -> System.IO.FileFormatException
Public Sub New (message As String)

参数

message
String

一个表示错误消息的String值。

适用于

FileFormatException(Uri)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

使用源 URI 值创建 FileFormatException 类的一个新实例。

public:
 FileFormatException(Uri ^ sourceUri);
public FileFormatException (Uri sourceUri);
public FileFormatException (Uri? sourceUri);
new System.IO.FileFormatException : Uri -> System.IO.FileFormatException
Public Sub New (sourceUri As Uri)

参数

sourceUri
Uri

导致此错误的文件的 Uri 值。

注解

此构造函数将 MessageFileFormatException 实例的 属性初始化为系统提供的消息,该消息描述错误并包含文件名,例如“文件 'sourceUri' 不符合预期的文件格式规范。此消息考虑了当前系统区域性。

使用 SourceUri 参数初始化 sourceUri 属性。

适用于

FileFormatException(SerializationInfo, StreamingContext)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

注意

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

使用序列化数据创建 FileFormatException 类的一个新实例,并对其进行初始化。 在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。

protected:
 FileFormatException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected FileFormatException (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 FileFormatException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.FileFormatException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.FileFormatException
[<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.IO.FileFormatException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.FileFormatException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

承载序列化对象数据的对象。

context
StreamingContext

关于来源和目标的上下文信息

属性

适用于

FileFormatException(String, Exception)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

使用指定的错误消息和异常类型创建 FileFormatException 类的一个新实例。

public:
 FileFormatException(System::String ^ message, Exception ^ innerException);
public FileFormatException (string message, Exception innerException);
public FileFormatException (string? message, Exception? innerException);
new System.IO.FileFormatException : string * Exception -> System.IO.FileFormatException
Public Sub New (message As String, innerException As Exception)

参数

message
String

一个表示错误消息的String值。

innerException
Exception

InnerException 属性的值,表示当前异常的原因。

注解

此构造函数使用 表示message的指定错误消息初始化MessageFileFormatException 实例的 属性。

适用于

FileFormatException(Uri, Exception)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

使用源 URI 值和异常类型创建 FileFormatException 类的一个新实例。

public:
 FileFormatException(Uri ^ sourceUri, Exception ^ innerException);
public FileFormatException (Uri sourceUri, Exception innerException);
public FileFormatException (Uri? sourceUri, Exception? innerException);
new System.IO.FileFormatException : Uri * Exception -> System.IO.FileFormatException
Public Sub New (sourceUri As Uri, innerException As Exception)

参数

sourceUri
Uri

导致此错误的文件的 Uri 值。

innerException
Exception

InnerException 属性的值,表示当前异常的原因。

注解

此构造函数将新实例的 Message 属性初始化为系统提供的消息,该消息描述错误并包含文件名,例如“文件 'sourceUri' 不符合预期的文件格式规范”。此消息考虑了当前系统区域性。

使用 SourceUri 参数初始化 sourceUri 属性。

适用于

FileFormatException(Uri, String)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

使用源 URI 值和指定的错误消息创建 FileFormatException 类的一个新实例。

public:
 FileFormatException(Uri ^ sourceUri, System::String ^ message);
public FileFormatException (Uri sourceUri, string message);
public FileFormatException (Uri? sourceUri, string? message);
new System.IO.FileFormatException : Uri * string -> System.IO.FileFormatException
Public Sub New (sourceUri As Uri, message As String)

参数

sourceUri
Uri

导致此错误的文件的 Uri 值。

message
String

一个表示错误消息的String值。

注解

此构造函数使用 表示message的指定错误消息初始化MessageFileFormatException 实例的 属性。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

使用 SourceUri 参数初始化 sourceUri 属性。

适用于

FileFormatException(Uri, String, Exception)

Source:
FileFormatException.cs
Source:
FileFormatException.cs
Source:
FileFormatException.cs

使用源 URI 值、指定的错误消息和异常类型创建 FileFormatException 类的一个新实例。

public:
 FileFormatException(Uri ^ sourceUri, System::String ^ message, Exception ^ innerException);
public FileFormatException (Uri sourceUri, string message, Exception innerException);
public FileFormatException (Uri? sourceUri, string? message, Exception? innerException);
new System.IO.FileFormatException : Uri * string * Exception -> System.IO.FileFormatException
Public Sub New (sourceUri As Uri, message As String, innerException As Exception)

参数

sourceUri
Uri

导致此错误的文件的 Uri 值。

message
String

一个表示错误消息的String值。

innerException
Exception

InnerException 属性的值,表示当前异常的原因。

注解

此构造函数使用 message 参数初始化新实例的 Message 属性。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

使用 SourceUri 参数初始化 sourceUri 属性。

适用于