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

GetRuntimeEvent() public static method

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

			return type.GetEvent (name);
		}