System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperty C# (CSharp) Method

GetRuntimeProperty() public static method

public static GetRuntimeProperty ( this type, string name ) : PropertyInfo
type this
name string
return PropertyInfo
		public static PropertyInfo GetRuntimeProperty (this Type type, string name)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetProperty (name);
		}
	}