다음을 통해 공유


FeatureNotSupportedException 생성자

정의

오버로드

FeatureNotSupportedException()

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

FeatureNotSupportedException(String)

지정된 메시지를 사용하여 FeatureNotSupportedException 클래스의 새 인스턴스를 초기화합니다.

FeatureNotSupportedException(String, Exception)

지정된 메시지 및 내부 예외를 사용하여 FeatureNotSupportedException 클래스의 새 인스턴스를 초기화합니다.

FeatureNotSupportedException()

Source:
Exceptions.shared.cs
Source:
Exceptions.shared.cs

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

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

적용 대상

FeatureNotSupportedException(String)

Source:
Exceptions.shared.cs
Source:
Exceptions.shared.cs

지정된 메시지를 사용하여 FeatureNotSupportedException 클래스의 새 인스턴스를 초기화합니다.

public:
 FeatureNotSupportedException(System::String ^ message);
public FeatureNotSupportedException (string message);
new Microsoft.Maui.ApplicationModel.FeatureNotSupportedException : string -> Microsoft.Maui.ApplicationModel.FeatureNotSupportedException
Public Sub New (message As String)

매개 변수

message
String

이 예외를 자세히 설명하는 메시지입니다.

적용 대상

FeatureNotSupportedException(String, Exception)

Source:
Exceptions.shared.cs
Source:
Exceptions.shared.cs

지정된 메시지 및 내부 예외를 사용하여 FeatureNotSupportedException 클래스의 새 인스턴스를 초기화합니다.

public:
 FeatureNotSupportedException(System::String ^ message, Exception ^ innerException);
public FeatureNotSupportedException (string message, Exception innerException);
new Microsoft.Maui.ApplicationModel.FeatureNotSupportedException : string * Exception -> Microsoft.Maui.ApplicationModel.FeatureNotSupportedException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

이 예외를 자세히 설명하는 메시지입니다.

innerException
Exception

이 예외와 관련된 내부 예외입니다.

적용 대상