UpdateException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
UpdateException의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| UpdateException() |
UpdateException의 새 인스턴스를 초기화합니다. |
| UpdateException(String) |
특수 오류 메시지를 사용하여 새 인스턴스 UpdateException 를 초기화합니다. |
| UpdateException(SerializationInfo, StreamingContext) |
직렬화된 데이터를 사용하여 새 인스턴스를 UpdateException 초기화합니다. |
| UpdateException(String, Exception) |
지정된 오류 메시지와 이 예외의 UpdateException 원인인 내부 예외에 대한 참조를 사용하는 클래스의 새 인스턴스를 초기화합니다. |
| UpdateException(String, Exception, IEnumerable<ObjectStateEntry>) |
지정된 오류 메시지, 내부 예외에 대한 참조 및 열거 가능한 개체 컬렉션을 사용하는 클래스의 UpdateException 새 인스턴스 ObjectStateEntry 를 초기화합니다. |
설명
코드에서 예외를 처리하는 방법에 대한 자세한 내용은 다음을 참조 Exception하세요.
UpdateException()
UpdateException의 새 인스턴스를 초기화합니다.
public:
UpdateException();
public UpdateException();
Public Sub New ()
설명
코드에서 예외를 처리하는 방법에 대한 자세한 내용은 다음을 참조 Exception하세요.
적용 대상
UpdateException(String)
특수 오류 메시지를 사용하여 새 인스턴스 UpdateException 를 초기화합니다.
public:
UpdateException(System::String ^ message);
public UpdateException(string message);
new System.Data.UpdateException : string -> System.Data.UpdateException
Public Sub New (message As String)
매개 변수
- message
- String
오류를 설명하는 메시지입니다.
설명
코드에서 예외를 처리하는 방법에 대한 자세한 내용은 다음을 참조 Exception하세요.
적용 대상
UpdateException(SerializationInfo, StreamingContext)
직렬화된 데이터를 사용하여 새 인스턴스를 UpdateException 초기화합니다.
protected:
UpdateException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected UpdateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.UpdateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.UpdateException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
throw되는 예외에 대한 직렬화된 개체 데이터를 보유하는 SerializationInfo.
- context
- StreamingContext
원본 또는 대상에 대한 컨텍스트 정보가 포함된 StreamingContext.
설명
코드에서 예외를 처리하는 방법에 대한 자세한 내용은 다음을 참조 Exception하세요.
적용 대상
UpdateException(String, Exception)
지정된 오류 메시지와 이 예외의 UpdateException 원인인 내부 예외에 대한 참조를 사용하는 클래스의 새 인스턴스를 초기화합니다.
public:
UpdateException(System::String ^ message, Exception ^ innerException);
public UpdateException(string message, Exception innerException);
new System.Data.UpdateException : string * Exception -> System.Data.UpdateException
Public Sub New (message As String, innerException As Exception)
매개 변수
- message
- String
예외의 이유를 설명하는 오류 메시지입니다.
- innerException
- Exception
현재 예외의 원인인 예외이거나 내부 예외가 지정되지 않은 경우 null 참조(Nothing Visual Basic)입니다.
설명
코드에서 예외를 처리하는 방법에 대한 자세한 내용은 다음을 참조 Exception하세요.
적용 대상
UpdateException(String, Exception, IEnumerable<ObjectStateEntry>)
지정된 오류 메시지, 내부 예외에 대한 참조 및 열거 가능한 개체 컬렉션을 사용하는 클래스의 UpdateException 새 인스턴스 ObjectStateEntry 를 초기화합니다.
public:
UpdateException(System::String ^ message, Exception ^ innerException, System::Collections::Generic::IEnumerable<System::Data::Objects::ObjectStateEntry ^> ^ stateEntries);
public UpdateException(string message, Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries);
new System.Data.UpdateException : string * Exception * seq<System.Data.Objects.ObjectStateEntry> -> System.Data.UpdateException
Public Sub New (message As String, innerException As Exception, stateEntries As IEnumerable(Of ObjectStateEntry))
매개 변수
- message
- String
예외의 이유를 설명하는 오류 메시지입니다.
- innerException
- Exception
현재 예외의 원인인 예외이거나 내부 예외가 지정되지 않은 경우 null 참조(Nothing Visual Basic)입니다.
- stateEntries
- IEnumerable<ObjectStateEntry>
개체의 ObjectStateEntry 컬렉션입니다.
설명
코드에서 예외를 처리하는 방법에 대한 자세한 내용은 다음을 참조 Exception하세요.