System.Reflection.RuntimeReflectionExtensions.GetRuntimeEvent C# (CSharp) Метод

GetRuntimeEvent() публичный статический Метод

public static GetRuntimeEvent ( this type, string name ) : EventInfo
type this
name string
Результат EventInfo
		public static EventInfo GetRuntimeEvent (this Type type, string name)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetEvent (name);
		}