_PropertyInfo.GetSetMethod 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为 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 参数为 true 且 set 访问器是非公共的。
|
null |
nonPublic 参数为 true ,但属性为只读。或者,nonPublic 参数为 false 且 set 访问器是非公共的。或者,没有 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
访问器。