internal void AddCustomAttributes(Type type, IEnumerable <object> attributes) { MutableAttributeTable.AddAttributes(this.GetTypeList(type), attributes); }
internal void AddCustomAttributes(Type ownerType, string memberName, IEnumerable <object> attributes) { MutableAttributeTable.AddAttributes(this.GetMemberList(ownerType, memberName), attributes); }
internal void AddCustomAttributes(Assembly assembly, IEnumerable <object> attributes) { MutableAttributeTable.AddAttributes(this.GetAssemblyList(assembly), attributes); }