共用方式為


EnumBuilder.IsDefined(Type, Boolean) 方法

定義

檢查是否已定義指定的自訂屬性類型。

public:
 override bool IsDefined(Type ^ attributeType, bool inherit);
public override bool IsDefined (Type attributeType, bool inherit);
override this.IsDefined : Type * bool -> bool
Public Overrides Function IsDefined (attributeType As Type, inherit As Boolean) As Boolean

參數

attributeType
Type

套用自訂屬性的 Type 物件。

inherit
Boolean

指定是否要搜尋這個成員的繼承鏈結以尋找屬性。

傳回

如果將一個或多個 attributeType 的執行個體定義於這個成員,則為 true;否則為 false

例外狀況

不完整的類型目前不支援這個方法。

備註

因應措施是檢查是否已針對已完成的類型定義自定義屬性,請使用 GetType 擷取型別,並在傳Type回的上呼叫 GetCustomAttributes

適用於