SemaphoreFullException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다.
오버로드
SemaphoreFullException() |
기본값을 사용하여 SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다. |
SemaphoreFullException(String) |
지정된 오류 메시지를 사용하여 SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다. |
SemaphoreFullException(SerializationInfo, StreamingContext) |
사용되지 않음.
serialize된 데이터를 사용하여 SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다. |
SemaphoreFullException(String, Exception) |
지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다. |
SemaphoreFullException()
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
- Source:
- SemaphoreFullException.cs
기본값을 사용하여 SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다.
public:
SemaphoreFullException();
public SemaphoreFullException ();
Public Sub New ()
설명
이 생성자는 새 instance 속성을 "지정된 개수를 세마포에 추가하면 최대 개수를 초과하게 됩니다."와 같이 오류를 설명하는 시스템 제공 메시지로 초기화 Message 합니다. 이 메시지는 현재 시스템 문화권을 고려합니다.
다음 표에서는 SemaphoreFullException 클래스의 인스턴스에 대한 초기 속성 값을 보여 줍니다.
속성 | 값 |
---|---|
InnerException |
null . |
Message | 시스템에서 제공하는 오류 메시지 문자열입니다. |
추가 정보
적용 대상
SemaphoreFullException(String)
- 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
콘텐츠는 사용자에게 예외에 대해 알리기 위한 텍스트 문자열입니다. 현재 시스템 culture에 대해 이 문자열이 지역화되었는지 확인하려면 이 생성자의 호출자가 필요합니다.
다음 표에서는 이 생성자를 사용하여 초기화된 클래스의 SemaphoreFullException instance 대한 초기 속성 값을 보여줍니다.
속성 | 값 |
---|---|
InnerException |
null . |
Message |
message . |
추가 정보
적용 대상
SemaphoreFullException(SerializationInfo, StreamingContext)
- 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.
serialize된 데이터를 사용하여 SemaphoreFullException 클래스의 새 인스턴스를 초기화합니다.
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}")]
protected SemaphoreFullException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Threading.SemaphoreFullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.SemaphoreFullException
[<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
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
발생되는 예외에 대해 직렬화된 개체 데이터를 보유하는 SerializationInfo 개체입니다.
- context
- StreamingContext
원본 또는 대상에 대한 컨텍스트 정보를 포함하는 StreamingContext 개체입니다.
- 특성
설명
이 생성자는 스트림을 통해 전송되는 예외 개체를 다시 구성하기 위해 역직렬화 중에 호출됩니다. 자세한 내용은 XML 및 SOAP Serialization합니다.
추가 정보
적용 대상
SemaphoreFullException(String, Exception)
- 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
현재 예외의 원인인 예외입니다.
innerException
매개 변수가 null
이 아니면 현재 예외는 내부 예외를 처리하는 catch
블록에서 발생합니다.
설명
이전 예외의 직접적인 결과로 throw되는 예외의 InnerException 속성에는 이전 예외에 대한 참조가 들어 있어야 합니다.
InnerException 속성은 생성자로 전달되는 값과 같은 값을 반환하거나, InnerException 속성이 생성자에 내부 예외 값을 제공하지 않는 경우 null
을 반환합니다.
추가 정보
적용 대상
.NET