Module.GetCustomAttributesData 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回目前模組的 CustomAttributeData 物件清單,這些物件可用於僅限反映的內容中。
public:
virtual System::Collections::Generic::IList<System::Reflection::CustomAttributeData ^> ^ GetCustomAttributesData();
public virtual System.Collections.Generic.IList<System.Reflection.CustomAttributeData> GetCustomAttributesData ();
abstract member GetCustomAttributesData : unit -> System.Collections.Generic.IList<System.Reflection.CustomAttributeData>
override this.GetCustomAttributesData : unit -> System.Collections.Generic.IList<System.Reflection.CustomAttributeData>
Public Overridable Function GetCustomAttributesData () As IList(Of CustomAttributeData)
傳回
CustomAttributeData 物件的泛型清單,表示已套用至目前模組之屬性的資料。
備註
使用這個方法可在僅限反映的內容中檢查程式代碼的自定義屬性,以防自定義屬性本身是在載入至僅限反映內容的程式代碼中定義。 這類Attribute.GetCustomAttributesModule.GetCustomAttributes方法無法在這類情況下使用,因為它們會建立屬性的實例。 無法執行僅限反映內容中的程序代碼。 如需詳細資訊和範例程式代碼,請參閱 類別 CustomAttributeData 。