DeletedRowInaccessibleException 构造函数   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 DeletedRowInaccessibleException 类的新实例。
重载
| DeletedRowInaccessibleException() | 
						 初始化 DeletedRowInaccessibleException 类的新实例。  | 
        	
| DeletedRowInaccessibleException(String) | 
						 使用指定的字符串初始化 DeletedRowInaccessibleException 类的新实例。  | 
        	
| DeletedRowInaccessibleException(SerializationInfo, StreamingContext) | 
							 
		已过时.
	 
使用序列化信息初始化 DeletedRowInaccessibleException 类的新实例。  | 
        	
| DeletedRowInaccessibleException(String, Exception) | 
						 使用指定的错误消息和对作为此异常原因的内部异常的引用初始化 DeletedRowInaccessibleException 类的新实例。  | 
        	
DeletedRowInaccessibleException()
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
初始化 DeletedRowInaccessibleException 类的新实例。
public:
 DeletedRowInaccessibleException();
	public DeletedRowInaccessibleException ();
	Public Sub New ()
    	注解
使用 DataRow 类的 RowState 来确定是否已删除行。
另请参阅
适用于
DeletedRowInaccessibleException(String)
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
使用指定的字符串初始化 DeletedRowInaccessibleException 类的新实例。
public:
 DeletedRowInaccessibleException(System::String ^ s);
	public DeletedRowInaccessibleException (string? s);
	public DeletedRowInaccessibleException (string s);
	new System.Data.DeletedRowInaccessibleException : string -> System.Data.DeletedRowInaccessibleException
	Public Sub New (s As String)
	参数
- s
 - String
 
引发异常时要显示的字符串。
注解
使用 DataRow 类的 RowState 来确定是否已删除行。
另请参阅
适用于
DeletedRowInaccessibleException(SerializationInfo, StreamingContext)
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
使用序列化信息初始化 DeletedRowInaccessibleException 类的新实例。
protected:
 DeletedRowInaccessibleException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
	protected DeletedRowInaccessibleException (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 DeletedRowInaccessibleException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
	new System.Data.DeletedRowInaccessibleException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DeletedRowInaccessibleException
	[<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.Data.DeletedRowInaccessibleException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DeletedRowInaccessibleException
	Protected Sub New (info As SerializationInfo, context As StreamingContext)
	参数
- info
 - SerializationInfo
 
序列化或反序列化对象所需的数据。
- context
 - StreamingContext
 
指定序列化流的源和目标的说明。
- 属性
 
另请参阅
适用于
DeletedRowInaccessibleException(String, Exception)
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
- Source:
 - DataException.cs
 
使用指定的错误消息和对作为此异常原因的内部异常的引用初始化 DeletedRowInaccessibleException 类的新实例。
public:
 DeletedRowInaccessibleException(System::String ^ message, Exception ^ innerException);
	public DeletedRowInaccessibleException (string? message, Exception? innerException);
	public DeletedRowInaccessibleException (string message, Exception innerException);
	new System.Data.DeletedRowInaccessibleException : string * Exception -> System.Data.DeletedRowInaccessibleException
	Public Sub New (message As String, innerException As Exception)
	参数
- message
 - String
 
说明异常原因的错误消息。
- innerException
 - Exception
 
如果未指定内部异常,则该异常是当前异常的原因,或者为 null 引用(Nothing 在 Visual Basic 中)。
注解
使用 DataRow 类的 RowState 来确定是否已删除行。