Compartilhar via


Requires.NotNull Método

Definição

Sobrecargas

NotNull(IntPtr, String)

Gerará uma exceção se o valor do parâmetro especificado for IntPtr.Zero.

NotNull(Task, String)

Gerará uma exceção se o valor do parâmetro especificado for nulo.

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

Gerará uma exceção se o valor do parâmetro especificado for nulo.

NotNull<T>(T, String)

Gerará uma exceção se o valor do parâmetro especificado for nulo.

NotNull(IntPtr, String)

Gerará uma exceção se o valor do parâmetro especificado for 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

Parâmetros

value
IntPtr

nativeint

O valor do argumento.

parameterName
String

O nome do parâmetro a ser incluído em qualquer exceção gerada. Se esse argumento for omitido (gravar null explicitamente não se qualifica), a expressão usada no primeiro argumento será usada como o nome do parâmetro.

Retornos

IntPtr

nativeint

O valor do parâmetro.

Atributos

Exceções

Gerado se value for Zero.

Aplica-se a

NotNull(Task, String)

Gerará uma exceção se o valor do parâmetro especificado for nulo.

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)

Parâmetros

value
Task

O valor do argumento.

parameterName
String

O nome do parâmetro a ser incluído em qualquer exceção gerada. Se esse argumento for omitido (gravar null explicitamente não se qualifica), a expressão usada no primeiro argumento será usada como o nome do parâmetro.

Atributos

Exceções

Gerado se value for null.

Comentários

Esse método permite que métodos assíncronos usem Requires.NotNull sem precisar atribuir o resultado a variáveis locais para evitar avisos em C#.

Aplica-se a

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

Gerará uma exceção se o valor do parâmetro especificado for nulo.

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)

Parâmetros de tipo

T

O tipo do valor retornado da tarefa.

Parâmetros

value
Task<T>

O valor do argumento.

parameterName
String

O nome do parâmetro a ser incluído em qualquer exceção gerada. Se esse argumento for omitido (gravar null explicitamente não se qualifica), a expressão usada no primeiro argumento será usada como o nome do parâmetro.

Atributos

Exceções

Gerado se value for null.

Comentários

Esse método permite que métodos assíncronos usem Requires.NotNull sem precisar atribuir o resultado a variáveis locais para evitar avisos em C#.

Aplica-se a

NotNull<T>(T, String)

Gerará uma exceção se o valor do parâmetro especificado for nulo.

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

Parâmetros de tipo

T

O tipo do parâmetro.

Parâmetros

value
T

O valor do argumento.

parameterName
String

O nome do parâmetro a ser incluído em qualquer exceção gerada. Se esse argumento for omitido (gravar null explicitamente não se qualifica), a expressão usada no primeiro argumento será usada como o nome do parâmetro.

Retornos

T

O valor do parâmetro.

Atributos

Exceções

Gerado se value for null.

Aplica-se a