NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

MethodBuilder.ReflectedType

Retrieves the class that was used in reflection to obtain this object.

[Visual Basic]
Overridable Public ReadOnly Property ReflectedType As Type
[C#]
public Type ReflectedType {override get;}
[C++]
public: __property virtual Type* get_ReflectedType();
[JScript]
public function get ReflectedType() : Type;

Property Value

Read-only. The Type used to obtain this method.

Remarks

A MethodBuilder object represents a method on a particular class or interface. In order to obtain a MethodInfo object, the Type object that represents the class or interface that supports the method is queried. This property holds a reference to that Type object.

See Also

MethodBuilder Class | MethodBuilder Members | System.Reflection.Emit Namespace