Requires.NotNullOrEmpty 方法

定义

重载

NotNullOrEmpty(IEnumerable, String)

如果指定参数的值为 null,没有元素,则引发异常。

NotNullOrEmpty(String, String)

如果指定参数的值为 null 或为空,则引发异常。

NotNullOrEmpty<T>(ICollection<T>, String)

如果指定参数的值为 null,没有元素,则引发异常。

NotNullOrEmpty<T>(IEnumerable<T>, String)

如果指定参数的值为 null,没有元素,则引发异常。

NotNullOrEmpty(IEnumerable, String)

如果指定参数的值为 null,没有元素,则引发异常。

public:
 static void NotNullOrEmpty(System::Collections::IEnumerable ^ values, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty (System.Collections.IEnumerable values, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty (System.Collections.IEnumerable values, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
static member NotNullOrEmpty : System.Collections.IEnumerable * string -> unit
Public Shared Sub NotNullOrEmpty (values As IEnumerable, parameterName As String)
Public Shared Sub NotNullOrEmpty (values As IEnumerable, Optional parameterName As String = Nothing)

参数

values
IEnumerable

参数的值。

parameterName
String

要包含在任何引发的异常中的参数的名称。 如果省略此参数 (显式写入 null 不限定) ,则第一个参数中使用的表达式将用作参数名称。

属性

例外

如果测试的条件为 false,则引发。

适用于

NotNullOrEmpty(String, String)

如果指定参数的值为 null 或为空,则引发异常。

public:
 static void NotNullOrEmpty(System::String ^ value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty (string value, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty (string value, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
static member NotNullOrEmpty : string * string -> unit
Public Shared Sub NotNullOrEmpty (value As String, parameterName As String)
Public Shared Sub NotNullOrEmpty (value As String, Optional parameterName As String = Nothing)

参数

value
String

参数的值。

parameterName
String

要包含在任何引发的异常中的参数的名称。 如果省略此参数 (显式写入 null 不限定) ,则第一个参数中使用的表达式将用作参数名称。

属性

例外

如果 为 或为空,nullvalue引发。

适用于

NotNullOrEmpty<T>(ICollection<T>, String)

如果指定参数的值为 null,没有元素,则引发异常。

public:
generic <typename T>
 static void NotNullOrEmpty(System::Collections::Generic::ICollection<T> ^ values, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty<T> (System.Collections.Generic.ICollection<T> values, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
static member NotNullOrEmpty : System.Collections.Generic.ICollection<'T> * string -> unit
Public Shared Sub NotNullOrEmpty(Of T) (values As ICollection(Of T), Optional parameterName As String = Nothing)

类型参数

T

集合中值的类型。

参数

values
ICollection<T>

参数的值。

parameterName
String

要包含在任何引发的异常中的参数的名称。 如果省略此参数 (显式写入 null 不限定) ,则第一个参数中使用的表达式将用作参数名称。

属性

例外

如果测试的条件为 false,则引发。

适用于

NotNullOrEmpty<T>(IEnumerable<T>, String)

如果指定参数的值为 null,没有元素,则引发异常。

public:
generic <typename T>
 static void NotNullOrEmpty(System::Collections::Generic::IEnumerable<T> ^ values, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty<T> (System.Collections.Generic.IEnumerable<T> values, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrEmpty<T> (System.Collections.Generic.IEnumerable<T> values, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
static member NotNullOrEmpty : seq<'T> * string -> unit
Public Shared Sub NotNullOrEmpty(Of T) (values As IEnumerable(Of T), parameterName As String)
Public Shared Sub NotNullOrEmpty(Of T) (values As IEnumerable(Of T), Optional parameterName As String = Nothing)

类型参数

T

枚举生成的类型。

参数

values
IEnumerable<T>

参数的值。

parameterName
String

要包含在任何引发的异常中的参数的名称。 如果省略此参数 (显式写入 null 不限定) ,则第一个参数中使用的表达式将用作参数名称。

属性

例外

如果测试的条件为 false,则引发。

适用于