FeatureNotEnabledException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FeatureNotEnabledException() |
Initializes a new instance of the FeatureNotEnabledException class. |
FeatureNotEnabledException(String) |
Initializes a new instance of the FeatureNotEnabledException class with the specified message. |
FeatureNotEnabledException(String, Exception) |
Initializes a new instance of the FeatureNotEnabledException class with the specified message and inner exception. |
FeatureNotEnabledException()
- Source:
- Exceptions.shared.cs
- Source:
- Exceptions.shared.cs
Initializes a new instance of the FeatureNotEnabledException class.
public:
FeatureNotEnabledException();
public FeatureNotEnabledException ();
Public Sub New ()
Applies to
FeatureNotEnabledException(String)
- Source:
- Exceptions.shared.cs
- Source:
- Exceptions.shared.cs
Initializes a new instance of the FeatureNotEnabledException class with the specified message.
public:
FeatureNotEnabledException(System::String ^ message);
public FeatureNotEnabledException (string message);
new Microsoft.Maui.ApplicationModel.FeatureNotEnabledException : string -> Microsoft.Maui.ApplicationModel.FeatureNotEnabledException
Public Sub New (message As String)
Parameters
- message
- String
A message that describes this exception in more detail.
Applies to
FeatureNotEnabledException(String, Exception)
- Source:
- Exceptions.shared.cs
- Source:
- Exceptions.shared.cs
Initializes a new instance of the FeatureNotEnabledException class with the specified message and inner exception.
public:
FeatureNotEnabledException(System::String ^ message, Exception ^ innerException);
public FeatureNotEnabledException (string message, Exception innerException);
new Microsoft.Maui.ApplicationModel.FeatureNotEnabledException : string * Exception -> Microsoft.Maui.ApplicationModel.FeatureNotEnabledException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
A message that describes this exception in more detail.
- innerException
- Exception
An inner exception that has relation to this exception.