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

GetRuntimeEvents() public static method

public static GetRuntimeEvents ( this type ) : IEnumerable
type this
return IEnumerable
		public static IEnumerable<EventInfo> GetRuntimeEvents (this Type type)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetEvents (AllMembersBindingFlags);
		}