StrongTypingException 생성자

정의

StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

오버로드

StrongTypingException()

StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

StrongTypingException(String)

지정된 문자열을 사용하여 StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

StrongTypingException(SerializationInfo, StreamingContext)
사용되지 않음.

지정된 serialization 정보와 스트리밍 컨텍스트를 사용하여 StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

StrongTypingException(String, Exception)

지정된 문자열과 내부 예외를 사용하여 StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

StrongTypingException()

Source:
StrongTypingException.cs
Source:
StrongTypingException.cs
Source:
StrongTypingException.cs

StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

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

설명

StrongTypingException 클래스는 독립 실행형 구성 요소로는 사용할 수 없고 다른 클래스가 표준 기능을 파생하는 원본 클래스로만 사용할 수 있습니다.

적용 대상

StrongTypingException(String)

Source:
StrongTypingException.cs
Source:
StrongTypingException.cs
Source:
StrongTypingException.cs

지정된 문자열을 사용하여 StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

예외가 throw되었을 때 표시할 문자열입니다.

설명

StrongTypingException 클래스는 독립 실행형 구성 요소로는 사용할 수 없고 다른 클래스가 표준 기능을 파생하는 원본 클래스로만 사용할 수 있습니다.

적용 대상

StrongTypingException(SerializationInfo, StreamingContext)

Source:
StrongTypingException.cs
Source:
StrongTypingException.cs
Source:
StrongTypingException.cs

주의

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

지정된 serialization 정보와 스트리밍 컨텍스트를 사용하여 StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

info
SerializationInfo

SerializationInfo 개체입니다.

context
StreamingContext

StreamingContext 구조체입니다.

특성

설명

StrongTypingException 클래스는 독립 실행형 구성 요소로는 사용할 수 없고 다른 클래스가 표준 기능을 파생하는 원본 클래스로만 사용할 수 있습니다.

적용 대상

StrongTypingException(String, Exception)

Source:
StrongTypingException.cs
Source:
StrongTypingException.cs
Source:
StrongTypingException.cs

지정된 문자열과 내부 예외를 사용하여 StrongTypingException 클래스의 새 인스턴스를 초기화합니다.

public:
 StrongTypingException(System::String ^ s, Exception ^ innerException);
public StrongTypingException (string? s, Exception? innerException);
public StrongTypingException (string s, Exception innerException);
new System.Data.StrongTypingException : string * Exception -> System.Data.StrongTypingException
Public Sub New (s As String, innerException As Exception)

매개 변수

s
String

예외가 throw되었을 때 표시할 문자열입니다.

innerException
Exception

내부 예외에 대한 참조입니다.

설명

StrongTypingException 클래스는 독립 실행형 구성 요소로는 사용할 수 없고 다른 클래스가 표준 기능을 파생하는 원본 클래스로만 사용할 수 있습니다.

적용 대상