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);
		}