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;
      }