Requires.NotNull 方法

定义

重载

NotNull(IntPtr, String)

如果指定参数的值为 IntPtr.Zero,则引发异常。

NotNull(Task, String)

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

NotNull<T>(Task<T>, String)

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

NotNull<T>(T, String)

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

NotNull(IntPtr, String)

如果指定参数的值为 IntPtr.Zero,则引发异常。

public:
 static IntPtr NotNull(IntPtr value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static IntPtr NotNull (IntPtr value, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static IntPtr NotNull (IntPtr value, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")>]
static member NotNull : nativeint * string -> nativeint
Public Shared Function NotNull (value As IntPtr, parameterName As String) As IntPtr
Public Shared Function NotNull (value As IntPtr, Optional parameterName As String = Nothing) As IntPtr

参数

value
IntPtr

nativeint

参数的值。

parameterName
String

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

返回

IntPtr

nativeint

参数值。

属性

例外

如果 为 ,Zerovalue引发。

适用于

NotNull(Task, String)

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

public:
 static void NotNull(System::Threading::Tasks::Task ^ value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static void NotNull (System.Threading.Tasks.Task value, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static void NotNull (System.Threading.Tasks.Task value, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")>]
static member NotNull : System.Threading.Tasks.Task * string -> unit
Public Shared Sub NotNull (value As Task, parameterName As String)
Public Shared Sub NotNull (value As Task, Optional parameterName As String = Nothing)

参数

value
Task

参数的值。

parameterName
String

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

属性

例外

如果 为 ,nullvalue引发。

注解

此方法允许异步方法使用 Requires.NotNull,而无需将结果分配给局部变量以避免 C# 警告。

适用于

NotNull<T>(Task<T>, String)

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

public:
generic <typename T>
 static void NotNull(System::Threading::Tasks::Task<T> ^ value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static void NotNull<T> (System.Threading.Tasks.Task<T> value, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static void NotNull<T> (System.Threading.Tasks.Task<T> value, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")>]
static member NotNull : System.Threading.Tasks.Task<'T> * string -> unit
Public Shared Sub NotNull(Of T) (value As Task(Of T), parameterName As String)
Public Shared Sub NotNull(Of T) (value As Task(Of T), Optional parameterName As String = Nothing)

类型参数

T

任务的返回值的类型。

参数

value
Task<T>

参数的值。

parameterName
String

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

属性

例外

如果 为 ,nullvalue引发。

注解

此方法允许异步方法使用 Requires.NotNull,而无需将结果分配给局部变量以避免 C# 警告。

适用于

NotNull<T>(T, String)

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

public:
generic <typename T>
 where T : class static T NotNull(T value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static T NotNull<T> (T value, string? parameterName) where T : class;
[System.Diagnostics.DebuggerStepThrough]
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public static T NotNull<T> (T value, string? parameterName = default) where T : class;
[<System.Diagnostics.DebuggerStepThrough>]
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")>]
static member NotNull : 'T * string -> 'T (requires 'T : null)
Public Shared Function NotNull(Of T As Class) (value As T, parameterName As String) As T
Public Shared Function NotNull(Of T As Class) (value As T, Optional parameterName As String = Nothing) As T

类型参数

T

参数的类型。

参数

value
T

参数的值。

parameterName
String

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

返回

T

参数值。

属性

例外

如果 为 ,nullvalue引发。

适用于