Requires.Defined<TEnum>(TEnum, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
InvalidEnumArgumentException如果指定的值不是列舉類型的具名值,則會擲回 。
public:
generic <typename TEnum>
where TEnum : value class static void Defined(TEnum value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void Defined<TEnum> (TEnum value, string parameterName) where TEnum : struct;
[System.Diagnostics.DebuggerStepThrough]
public static void Defined<TEnum> (TEnum value, string? parameterName = default) where TEnum : struct;
[<System.Diagnostics.DebuggerStepThrough>]
static member Defined : 'Enum * string -> unit (requires 'Enum : struct)
Public Shared Sub Defined(Of TEnum As Structure) (value As TEnum, parameterName As String)
Public Shared Sub Defined(Of TEnum As Structure) (value As TEnum, Optional parameterName As String = Nothing)
類型參數
- TEnum
可定義的 value
列舉型別。
參數
- value
- TEnum
可由命名 TEnum
的值。
- parameterName
- String
要包含在任何擲回例外狀況中的參數名稱。 如果省略此自變數 (明確寫入 null
不符合) ,則第一個自變數中使用的表達式將會當做參數名稱使用。
- 屬性