Requires.NotNullOrWhiteSpace(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果指定的參數值為 Null、空白或空格符,則會擲回例外狀況。
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)
參數
- value
- String
引數的值。
- parameterName
- String
要包含在任何擲回例外狀況的參數名稱。 如果省略此自變數 (明確寫入 null
不符合) ,則第一個自變數中使用的運算式將作為參數名稱。
- 屬性
例外狀況
如果 value
為 null
或空白,則會擲回 。