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

GetSetMethod() public method

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