ArgumentNullException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ArgumentNullException 클래스의 새 인스턴스를 초기화합니다.
오버로드
ArgumentNullException() |
ArgumentNullException 클래스의 새 인스턴스를 초기화합니다. |
ArgumentNullException(String) |
이 예외를 throw한 매개 변수의 이름을 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다. |
ArgumentNullException(SerializationInfo, StreamingContext) |
사용되지 않음.
serialize된 데이터를 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다. |
ArgumentNullException(String, Exception) |
지정된 오류 메시지와 이 예외를 발생시킨 예외를 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다. |
ArgumentNullException(String, String) |
지정된 오류 메시지와 이 예외를 throw한 매개 변수의 이름을 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다. |
ArgumentNullException()
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
ArgumentNullException 클래스의 새 인스턴스를 초기화합니다.
public:
ArgumentNullException();
public ArgumentNullException ();
Public Sub New ()
설명
이 생성자는 새 instance 속성을 "값이 null일 수 없음"과 같이 오류를 설명하는 시스템 제공 메시지로 초기화 Message 합니다. 이 메시지는 현재 시스템 문화권을 고려합니다.
다음 표에는 ArgumentNullException의 인스턴스의 초기 속성 값이 나와 있습니다.
속성 | 값 |
---|---|
InnerException | null 참조(Visual Basic의 경우 Nothing ) |
Message | 영어의 경우 "값은 null일 수 없습니다."와 같은 지역화된 오류 메시지 문자열입니다. |
적용 대상
ArgumentNullException(String)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
이 예외를 throw한 매개 변수의 이름을 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다.
public:
ArgumentNullException(System::String ^ paramName);
public ArgumentNullException (string paramName);
public ArgumentNullException (string? paramName);
new ArgumentNullException : string -> ArgumentNullException
Public Sub New (paramName As String)
매개 변수
- paramName
- String
예외를 발생시킨 매개 변수의 이름입니다.
설명
이 생성자는 새 instance 속성을 오류를 설명하고 매개 변수 이름을 포함하는 시스템 제공 메시지로 초기화 Message 합니다. 이 메시지는 현재 시스템 culture를 고려합니다.
이 생성자는 ParamName 매개 변수를 사용하여 새 인스턴스의 paramName
속성을 초기화합니다.
paramName
내용은 사용자의 이해를 돕기 위한 것입니다.
다음 표에는 ArgumentNullException의 인스턴스의 초기 속성 값이 나와 있습니다.
속성 | 값 |
---|---|
InnerException | null 참조(Visual Basic의 경우 Nothing ) |
Message | null 인수를 식별하는 지역화된 오류 메시지 문자열입니다. 예를 들어 인수가 paramName "arg1"인 경우 영어 메시지 문자열은 다음과 같습니다..NET 5 이상 및 .NET Core에서: Value cannot be null. (Parameter name: 'arg1') .NET Framework: Value cannot be null.\r\nParameter name: arg1 |
ParamName | 매개 변수 이름 문자열입니다. |
적용 대상
ArgumentNullException(SerializationInfo, StreamingContext)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
주의
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
serialize된 데이터를 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다.
protected:
ArgumentNullException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ArgumentNullException (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 ArgumentNullException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Security.SecurityCritical]
protected ArgumentNullException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new ArgumentNullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> ArgumentNullException
[<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 ArgumentNullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> ArgumentNullException
[<System.Security.SecurityCritical>]
new ArgumentNullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> ArgumentNullException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
serialize된 개체 데이터를 보유하는 개체입니다.
- context
- StreamingContext
직렬화된 데이터의 원본 또는 대상을 설명하는 개체입니다.
- 특성
설명
이 생성자는 스트림을 통해 전송되는 예외 개체를 다시 구성하기 위해 역직렬화 중에 호출됩니다. 자세한 내용은 XML 및 SOAP Serialization합니다.
추가 정보
적용 대상
ArgumentNullException(String, Exception)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
지정된 오류 메시지와 이 예외를 발생시킨 예외를 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다.
public:
ArgumentNullException(System::String ^ message, Exception ^ innerException);
public ArgumentNullException (string message, Exception innerException);
public ArgumentNullException (string? message, Exception? innerException);
new ArgumentNullException : string * Exception -> ArgumentNullException
Public Sub New (message As String, innerException As Exception)
매개 변수
- message
- String
이 예외의 원인을 설명하는 오류 메시지입니다.
- innerException
- Exception
현재 예외를 발생시킨 예외이거나 내부 예외를 지정하지 않은 경우 null 참조(Visual Basic에서는 Nothing
)입니다.
적용 대상
ArgumentNullException(String, String)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
지정된 오류 메시지와 이 예외를 throw한 매개 변수의 이름을 사용하여 ArgumentNullException 클래스의 새 인스턴스를 초기화합니다.
public:
ArgumentNullException(System::String ^ paramName, System::String ^ message);
public ArgumentNullException (string paramName, string message);
public ArgumentNullException (string? paramName, string? message);
new ArgumentNullException : string * string -> ArgumentNullException
Public Sub New (paramName As String, message As String)
매개 변수
- paramName
- String
예외를 발생시킨 매개 변수의 이름입니다.
- message
- String
오류를 설명하는 메시지입니다.
설명
이 생성자는 매개 변수 값을 사용하여 message
새 instance 속성을 초기화 Message 합니다.
message
매개 변수의 내용은 사용자가 이해할 수 있도록 만들어졌습니다. 현재 시스템 culture에 대해 이 문자열이 지역화되었는지 확인하려면 이 생성자의 호출자가 필요합니다.
이 생성자는 ParamName 매개 변수를 사용하여 새 인스턴스의 paramName
속성을 초기화합니다.
paramName
내용은 사용자의 이해를 돕기 위한 것입니다.
다음 표에는 ArgumentNullException의 인스턴스의 초기 속성 값이 나와 있습니다.
속성 | 값 |
---|---|
InnerException | null 참조(Visual Basic의 경우 Nothing ) |
Message | 오류 메시지 문자열입니다. |
ParamName | 매개 변수 이름 문자열입니다. |
적용 대상
.NET