System.Reflection.RuntimeReflectionExtensions.GetRuntimeEvents C# (CSharp) 메소드

GetRuntimeEvents() 공개 정적인 메소드

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

			return type.GetEvents (AllMembersBindingFlags);
		}