다음을 통해 공유


ConstraintException 생성자

정의

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

오버로드

ConstraintException()

ConstraintException 클래스의 새 인스턴스를 초기화합니다. 이는 매개 변수가 없는 생성자입니다.

ConstraintException(String)

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

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

지정된 직렬화 및 스트리밍 컨텍스트를 사용하여 ConstraintException 클래스의 새 인스턴스를 초기화합니다.

ConstraintException(String, Exception)

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

ConstraintException()

Source:
DataException.cs
Source:
DataException.cs
Source:
DataException.cs

ConstraintException 클래스의 새 인스턴스를 초기화합니다. 이는 매개 변수가 없는 생성자입니다.

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

적용 대상

ConstraintException(String)

Source:
DataException.cs
Source:
DataException.cs
Source:
DataException.cs

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

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

매개 변수

s
String

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

적용 대상

ConstraintException(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.

지정된 직렬화 및 스트리밍 컨텍스트를 사용하여 ConstraintException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

info
SerializationInfo

개체를 직렬화 또는 역직렬화하는 데 필요한 데이터입니다.

context
StreamingContext

serialize된 특정 스트림의 소스 및 대상에 대한 설명입니다.

특성

적용 대상

ConstraintException(String, Exception)

Source:
DataException.cs
Source:
DataException.cs
Source:
DataException.cs

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

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

매개 변수

message
String

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

innerException
Exception

현재 예외를 발생시킨 Exception 인스턴스를 가져옵니다.

적용 대상