ITargetAwareCodeDomProvider.SupportsProperty(Type, String, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出專案目標 Framework 上指定的型別是否具有指定的具名屬性。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
bool SupportsProperty(Type ^ type, System::String ^ propertyName, bool isWritable);
public bool SupportsProperty (Type type, string propertyName, bool isWritable);
abstract member SupportsProperty : Type * string * bool -> bool
Public Function SupportsProperty (type As Type, propertyName As String, isWritable As Boolean) As Boolean
參數
- type
- Type
要查詢其屬性的型別。
- propertyName
- String
要在 type
中尋找的屬性名稱。
- isWritable
- Boolean
旗標,指出屬性是否必須包含 get 存取子。
傳回
如果專案目標 Framework 上的 type
具有名為 propertyname
的屬性則為 true
,否則為 false
。