Microsoft.JScript.JSFieldMethod.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

public GetCustomAttributes ( bool inherit ) : Object[]
inherit bool
return Object[]
      public override Object[] GetCustomAttributes(bool inherit){
        if (this.func != null){
          CustomAttributeList caList = this.func.customAttributes;
          if (caList != null) return (Object[])caList.Evaluate(inherit);
        }
        return new Object[0];
      }