System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperties C# (CSharp) Méthode

GetRuntimeProperties() public static méthode

public static GetRuntimeProperties ( this type ) : IEnumerable
type this
Résultat IEnumerable
		public static IEnumerable<PropertyInfo> GetRuntimeProperties (this Type type)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetProperties (AllMembersBindingFlags);
		}