SqlAlreadyFilledException 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 SqlAlreadyFilledException class.
Overloads
SqlAlreadyFilledException() |
Initializes a new instance of the SqlAlreadyFilledException class. |
SqlAlreadyFilledException(String) |
Initializes a new instance of the SqlAlreadyFilledException class. |
SqlAlreadyFilledException(String, Exception) |
Initializes a new instance of the SqlAlreadyFilledException class. |
Remarks
The SqlAlreadyFilledException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.
SqlAlreadyFilledException()
- Source:
- SQLUtility.cs
- Source:
- SQLUtility.cs
- Source:
- SQLUtility.cs
Initializes a new instance of the SqlAlreadyFilledException class.
public:
SqlAlreadyFilledException();
public SqlAlreadyFilledException ();
Public Sub New ()
Remarks
The SqlAlreadyFilledException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.
Applies to
SqlAlreadyFilledException(String)
- Source:
- SQLUtility.cs
- Source:
- SQLUtility.cs
- Source:
- SQLUtility.cs
Initializes a new instance of the SqlAlreadyFilledException class.
public:
SqlAlreadyFilledException(System::String ^ message);
public SqlAlreadyFilledException (string? message);
public SqlAlreadyFilledException (string message);
new System.Data.SqlTypes.SqlAlreadyFilledException : string -> System.Data.SqlTypes.SqlAlreadyFilledException
Public Sub New (message As String)
Parameters
- message
- String
The string to display when the exception is thrown.
Remarks
The SqlAlreadyFilledException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.
Applies to
SqlAlreadyFilledException(String, Exception)
- Source:
- SQLUtility.cs
- Source:
- SQLUtility.cs
- Source:
- SQLUtility.cs
Initializes a new instance of the SqlAlreadyFilledException class.
public:
SqlAlreadyFilledException(System::String ^ message, Exception ^ e);
public SqlAlreadyFilledException (string? message, Exception? e);
public SqlAlreadyFilledException (string message, Exception e);
new System.Data.SqlTypes.SqlAlreadyFilledException : string * Exception -> System.Data.SqlTypes.SqlAlreadyFilledException
Public Sub New (message As String, e As Exception)
Parameters
- message
- String
The string to display when the exception is thrown.
A reference to an inner exception.
Remarks
The SqlAlreadyFilledException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.