SemaphoreFullException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 SemaphoreFullException 类的新实例。
重载
| 名称 | 说明 |
|---|---|
| SemaphoreFullException() |
使用默认值初始化 SemaphoreFullException 类的新实例。 |
| SemaphoreFullException(String) |
使用指定的错误消息初始化类的新实例 SemaphoreFullException 。 |
| SemaphoreFullException(SerializationInfo, StreamingContext) |
已过时.
使用序列化的数据初始化 SemaphoreFullException 类的新实例。 |
| SemaphoreFullException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用初始化类的新实例 SemaphoreFullException 。 |
SemaphoreFullException()
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
使用默认值初始化 SemaphoreFullException 类的新实例。
public:
SemaphoreFullException();
public SemaphoreFullException();
Public Sub New ()
注解
此构造函数将 Message 新实例的属性初始化为描述错误的系统提供的消息,例如“将给定计数添加到信号灯将导致它超出其最大计数”。此消息将考虑当前系统区域性。
下表显示了类实例 SemaphoreFullException 的初始属性值。
| 财产 | 价值 |
|---|---|
| InnerException |
null。 |
| Message | 系统提供的错误消息字符串。 |
另请参阅
适用于
SemaphoreFullException(String)
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
使用指定的错误消息初始化类的新实例 SemaphoreFullException 。
public:
SemaphoreFullException(System::String ^ message);
public SemaphoreFullException(string message);
public SemaphoreFullException(string? message);
new System.Threading.SemaphoreFullException : string -> System.Threading.SemaphoreFullException
Public Sub New (message As String)
参数
- message
- String
说明异常原因的错误消息。
注解
内容 message 是一个文本字符串,旨在告知用户异常。 此构造函数的调用方必须确保此字符串已本地化为当前系统区域性。
下表显示了使用此构造函数初始化的 SemaphoreFullException 类实例的初始属性值。
| 财产 | 价值 |
|---|---|
| InnerException |
null。 |
| Message |
message。 |
另请参阅
适用于
SemaphoreFullException(SerializationInfo, StreamingContext)
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
使用序列化的数据初始化 SemaphoreFullException 类的新实例。
protected:
SemaphoreFullException(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 SemaphoreFullException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
protected SemaphoreFullException(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.Threading.SemaphoreFullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.SemaphoreFullException
new System.Threading.SemaphoreFullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.SemaphoreFullException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
保存 SerializationInfo 所引发异常的序列化对象数据的对象。
- context
- StreamingContext
StreamingContext包含有关源或目标的上下文信息的对象。
- 属性
注解
在反序列化期间调用此构造函数以重新构造通过流传输的异常对象。 有关详细信息,请参阅 XML 和 SOAP 序列化。
另请参阅
适用于
SemaphoreFullException(String, Exception)
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
使用指定的错误消息和对作为此异常原因的内部异常的引用初始化类的新实例 SemaphoreFullException 。
public:
SemaphoreFullException(System::String ^ message, Exception ^ innerException);
public SemaphoreFullException(string message, Exception innerException);
public SemaphoreFullException(string? message, Exception? innerException);
new System.Threading.SemaphoreFullException : string * Exception -> System.Threading.SemaphoreFullException
Public Sub New (message As String, innerException As Exception)
参数
- message
- String
说明异常原因的错误消息。
- innerException
- Exception
是当前异常原因的异常。 如果未 innerExceptionnull 参数,则会在处理内部异常的 catch 块中引发当前异常。
注解
作为上一个异常的直接结果引发的异常应包括对 InnerException 属性中上一个异常的引用。
InnerException 属性返回传入构造函数的相同值,或者如果 null 属性未向构造函数提供内部异常值,则返回 InnerException。