GetCustomAttributesDataInternal() приватный Метод

private GetCustomAttributesDataInternal ( ICustomAttributeProvider obj ) : System.Reflection.CustomAttributeData[]
obj ICustomAttributeProvider
Результат System.Reflection.CustomAttributeData[]
Пример #1
0
 internal static IList <CustomAttributeData> GetCustomAttributesData(ICustomAttributeProvider obj)
 {
     if (obj == null)
     {
         throw new ArgumentNullException("obj");
     }
     CustomAttributeData[] customAttributesDataInternal = MonoCustomAttrs.GetCustomAttributesDataInternal(obj);
     return(Array.AsReadOnly <CustomAttributeData>(customAttributesDataInternal));
 }