Microsoft.JScript.JSWrappedProperty.GetGetMethod C# (CSharp) Method

GetGetMethod() public method

public GetGetMethod ( bool nonPublic ) : MethodInfo
nonPublic bool
return System.Reflection.MethodInfo
      public override MethodInfo GetGetMethod(bool nonPublic){
        MethodInfo meth = JSProperty.GetGetMethod(this.property, nonPublic);
        if (meth == null) return null;
        return new JSWrappedMethod(meth, this.obj);
      }