Microsoft.JScript.Class.IsCustomAttribute C# (CSharp) Method

IsCustomAttribute() private method

private IsCustomAttribute ( ) : bool
return bool
      internal bool IsCustomAttribute(){
        this.GetIRForSuperType();
        if (this.superIR != Typeob.Attribute) return false;
        if (this.customAttributes == null) return false;
        this.customAttributes.PartiallyEvaluate();
        if (this.validOn == 0) return false;
        return true;
      }