System.MonoCustomAttrs.GetCustomAttributesData C# (CSharp) Метод

GetCustomAttributesData() статический приватный Метод

static private GetCustomAttributesData ( ICustomAttributeProvider obj ) : IList
obj ICustomAttributeProvider
Результат IList
		internal static IList<CustomAttributeData> GetCustomAttributesData (ICustomAttributeProvider obj)
		{
			if (obj == null)
				throw new ArgumentNullException ("obj");

			CustomAttributeData [] attrs = GetCustomAttributesDataInternal (obj);
			return Array.AsReadOnly<CustomAttributeData> (attrs);
		}