PropertyBuilder.GetSetMethod(Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回這個屬性的 set 存取子。
public:
override System::Reflection::MethodInfo ^ GetSetMethod(bool nonPublic);
public override System.Reflection.MethodInfo? GetSetMethod (bool nonPublic);
public override System.Reflection.MethodInfo GetSetMethod (bool nonPublic);
override this.GetSetMethod : bool -> System.Reflection.MethodInfo
Public Overrides Function GetSetMethod (nonPublic As Boolean) As MethodInfo
參數
- nonPublic
- Boolean
指出若為非公用存取子,是否應該傳回。 如果非公用方法要包含在內,則為 true
;否則為 false
。
傳回
這個屬性的 Set
方法或 null
,如下表所示。
值 | 條件 |
---|---|
MethodInfo 物件,表示這個屬性的 Set 方法。 | set 存取子為公用。
|
null |
nonPublic 為 true,但屬性為唯讀。
|
備註
若要取得屬性的 setter,請使用 Type.GetType 或 Assembly.GetType 來反映屬性的父類型、從類型擷取 Reflection 屬性對象,然後呼叫 PropertyInfo.GetSetMethod。