Requires.NotNull メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
修飾されません)、最初の引数で使用される式がパラメーター名として使用されます。
戻り値
nativeint
パラメーターの値。
- 属性
例外
が の場合 value
に Zeroスローされます。
適用対象
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
修飾されません)、最初の引数で使用される式がパラメーター名として使用されます。
- 属性
例外
が の場合 value
に null
スローされます。
注釈
このメソッドを使用すると、非同期メソッドで 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
修飾されません)、最初の引数で使用される式がパラメーター名として使用されます。
- 属性
例外
が の場合 value
に null
スローされます。
注釈
このメソッドを使用すると、非同期メソッドで 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
修飾されません)、最初の引数で使用される式がパラメーター名として使用されます。
戻り値
パラメーターの値。
- 属性
例外
が の場合 value
に null
スローされます。