You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initializes a new instance of the ArgumentException class with a specified error message and a reference to the inner exception that is the cause of this exception.
43
+
/// Initializes a new instance of the <see cref="ArgumentException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
35
44
/// </summary>
36
-
/// <param name="message">The error message that explains the reason for the exception. </param>
37
-
/// <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
/// <param name="message">The error message that explains the reason for the exception.</param>
46
+
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
/// Initializes a new instance of the ArgumentException class with a specified error message, the parameter name, and a reference to the inner exception that is the cause of this exception.
52
+
/// Initializes a new instance of the <see cref="ArgumentException"/> class with a specified error message and the name of the parameter that causes this exception.
45
53
/// </summary>
46
54
/// <param name="message">The error message that explains the reason for the exception.</param>
47
-
/// <param name="paramName">The name of the parameter that caused the current exception. </param>
48
-
/// <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param>
/// Initializes a new instance of the ArgumentException class with a specified error message and the name of the parameter that causes this exception.
62
+
/// Initializes a new instance of the <see cref="ArgumentException"/> class with a specified error message, the parameter name, and a reference to the inner exception that is the cause of this exception.
57
63
/// </summary>
58
-
/// <param name="message">The error message that explains the reason for the exception. </param>
59
-
/// <param name="paramName">The name of the parameter that caused the current exception. </param>
/// <param name="message">The error message that explains the reason for the exception.</param>
65
+
/// <param name="paramName">The name of the parameter that caused the current exception.</param>
66
+
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
/// Initializes a new instance of the ArgumentNullException class with the name of the parameter that causes this exception.
39
+
/// Initializes a new instance of the <see cref="ArgumentNullException"/> class with a specified error message and the exception that is the cause of this exception.
22
40
/// </summary>
23
-
/// <param name="argument">The name of the parameter that caused the exception.</param>
/// <param name="message">The error message that explains the reason for this exception.</param>
42
+
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
/// Initializes an instance of the ArgumentNullException class with a specified error message and the name of the parameter that causes this exception.
48
+
/// Initializes an instance of the <see cref="ArgumentNullException"/> class with a specified error message and the name of the parameter that causes this exception.
28
49
/// </summary>
29
-
/// <param name="paramName">The name of the parameter that caused the exception. </param>
30
-
/// <param name="message">A message that describes the error. </param>
/// <param name="value">The string to test.</param>
827
829
/// <returns><see langword="true"/> if the value parameter is <see langword="null"/> or an empty string (""); otherwise, <see langword="false"/>.</returns>
0 commit comments