MissingParameterValueException Constructors
Class Constructors 2 members
The exception that is thrown when a parameter resource cannot be initialized because its value is missing or cannot be resolved.
Constructor(string) Section titled Constructor(string) Initializes a new instance of the
MissingParameterValueException class with a specified error message. public class MissingParameterValueException{ public MissingParameterValueException( string message) { // ... }}Parameters
message string The message that describes the error. Constructor(string, Exception) Section titled Constructor(string, Exception) Initializes a new instance of the
MissingParameterValueException class with a specified error message and a reference to the inner exception that is the cause of this exception. public class MissingParameterValueException{ public MissingParameterValueException( string message, Exception innerException) { // ... }}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 if no inner exception is specified.