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

GetGetMethod() public method

public GetGetMethod ( bool nonPublic ) : MethodInfo
nonPublic bool
return System.Reflection.MethodInfo
      public override MethodInfo GetGetMethod(bool nonPublic){
        if (nonPublic || (this.getMeth != null && this.getMeth.IsPublic))
          return this.getMeth;
        else
          return null;
      }