Requires.NotNullOrWhiteSpace(String, String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Gerará uma exceção se o valor do parâmetro especificado for nulo, vazio ou espaço em branco.
public:
static void NotNullOrWhiteSpace(System::String ^ value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrWhiteSpace (string value, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotNullOrWhiteSpace (string value, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
static member NotNullOrWhiteSpace : string * string -> unit
Public Shared Sub NotNullOrWhiteSpace (value As String, parameterName As String)
Public Shared Sub NotNullOrWhiteSpace (value As String, Optional parameterName As String = Nothing)
Parâmetros
- value
- String
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 (a gravação null
explícita não se qualificará), a expressão usada no primeiro argumento será usada como o nome do parâmetro.
- Atributos
Exceções
Gerado se value
estiver null
ou vazio.