Microsoft.JScript.Class.IsCustomAttribute C# (CSharp) 메소드

IsCustomAttribute() 개인적인 메소드

private IsCustomAttribute ( ) : bool
리턴 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;
      }