public override object[] GetCustomAttributes(Type attributeType, bool inherit)
 {
     return(UnresolvedCustomAttributeProvider.GetCustomAttributes(adapter, attributeType, inherit));
 }
 public override bool IsDefined(Type attributeType, bool inherit)
 {
     return(UnresolvedCustomAttributeProvider.IsDefined(adapter, attributeType, inherit));
 }
 public override IList <CustomAttributeData> GetCustomAttributesData()
 {
     return(UnresolvedCustomAttributeProvider.GetCustomAttributesData(adapter));
 }