_PropertyInfo.GetSetMethod 方法

定义

为 COM 对象提供对 GetSetMethod 方法的与版本无关的访问。

重载

GetSetMethod(Boolean)

为 COM 对象提供对 GetSetMethod(Boolean) 方法的与版本无关的访问。

GetSetMethod()

为 COM 对象提供对 GetSetMethod() 方法的与版本无关的访问。

注解

此方法用于从非托管代码访问托管类,不应从托管代码调用。

方法 GetSetMethod 返回一个 MethodInfo 对象,表示此属性的访问 set 器。

GetSetMethod(Boolean)

为 COM 对象提供对 GetSetMethod(Boolean) 方法的与版本无关的访问。

public:
 System::Reflection::MethodInfo ^ GetSetMethod(bool nonPublic);
public System.Reflection.MethodInfo GetSetMethod (bool nonPublic);
abstract member GetSetMethod : bool -> System.Reflection.MethodInfo
Public Function GetSetMethod (nonPublic As Boolean) As MethodInfo

参数

nonPublic
Boolean

true 表示返回非公共访问器;否则,为 false

返回

下表中的值之一。

“值” 含义
表示此属性的 MethodInfo 方法的 Set 对象。 set 访问器是公共的。或者,nonPublic 参数为 trueset 访问器是非公共的。
null nonPublic 参数为 true,但属性为只读。或者,nonPublic 参数为 falseset 访问器是非公共的。或者,没有 set 访问器。

注解

此方法用于从非托管代码访问托管类,不应从托管代码调用。

方法 GetSetMethod 返回 set 此属性的 访问器。

适用于

GetSetMethod()

为 COM 对象提供对 GetSetMethod() 方法的与版本无关的访问。

public:
 System::Reflection::MethodInfo ^ GetSetMethod();
public System.Reflection.MethodInfo GetSetMethod ();
abstract member GetSetMethod : unit -> System.Reflection.MethodInfo
Public Function GetSetMethod () As MethodInfo

返回

如果 MethodInfo 访问器是公共的,则为表示此属性的 Set 方法的 set 对象;如果 null 访问器是非公共的,则为 set

注解

此方法用于从非托管代码访问托管类,不应从托管代码调用。

方法 GetSetMethod 返回此属性的公共 set 访问器。

适用于