Microsoft.JScript.JSPropertyInfo.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 getter = this.getter;
        if (getter == null){
          getter = this.property.GetGetMethod(nonPublic);
          if (getter != null)
            getter = new JSMethodInfo(getter);
          this.getter = getter;
        }
        return getter;
      }