InvalidExpressionException 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.
Initializes a new instance of the InvalidExpressionException class.
Overloads
InvalidExpressionException() |
Initializes a new instance of the InvalidExpressionException class. |
InvalidExpressionException(String) |
Initializes a new instance of the InvalidExpressionException class with the specified string. |
InvalidExpressionException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the InvalidExpressionException class with the SerializationInfo and the StreamingContext. |
InvalidExpressionException(String, Exception) |
Initializes a new instance of the InvalidExpressionException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
InvalidExpressionException()
- Source:
- FilterException.cs
- Source:
- FilterException.cs
- Source:
- FilterException.cs
Initializes a new instance of the InvalidExpressionException class.
public:
InvalidExpressionException();
public InvalidExpressionException ();
Public Sub New ()
Applies to
InvalidExpressionException(String)
- Source:
- FilterException.cs
- Source:
- FilterException.cs
- Source:
- FilterException.cs
Initializes a new instance of the InvalidExpressionException class with the specified string.
public:
InvalidExpressionException(System::String ^ s);
public InvalidExpressionException (string? s);
public InvalidExpressionException (string s);
new System.Data.InvalidExpressionException : string -> System.Data.InvalidExpressionException
Public Sub New (s As String)
Parameters
- s
- String
The string to display when the exception is thrown.
Applies to
InvalidExpressionException(SerializationInfo, StreamingContext)
- Source:
- FilterException.cs
- Source:
- FilterException.cs
- Source:
- FilterException.cs
Caution
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initializes a new instance of the InvalidExpressionException class with the SerializationInfo and the StreamingContext.
protected:
InvalidExpressionException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected InvalidExpressionException (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 InvalidExpressionException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.InvalidExpressionException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.InvalidExpressionException
[<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.InvalidExpressionException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.InvalidExpressionException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The data needed to serialize or deserialize an object.
- context
- StreamingContext
The source and destination of a given serialized stream.
- Attributes
Applies to
InvalidExpressionException(String, Exception)
- Source:
- FilterException.cs
- Source:
- FilterException.cs
- Source:
- FilterException.cs
Initializes a new instance of the InvalidExpressionException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public:
InvalidExpressionException(System::String ^ message, Exception ^ innerException);
public InvalidExpressionException (string? message, Exception? innerException);
public InvalidExpressionException (string message, Exception innerException);
new System.Data.InvalidExpressionException : string * Exception -> System.Data.InvalidExpressionException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The error message that explains the reason for the exception.
- innerException
- Exception
The exception that is the cause of the current exception, or a null reference (Nothing
in Visual Basic) if no inner exception is specified.