Grafiti.GestureRecognizer.GetEventInfo C# (CSharp) Méthode

GetEventInfo() private méthode

private GetEventInfo ( string ev ) : EventInfo
ev string
Résultat System.Reflection.EventInfo
        internal System.Reflection.EventInfo GetEventInfo(string ev)
        {
            Debug.Assert(GetType().GetEvent(ev) != null, "Attempting to access unexisting event named " + ev +
                " for class " + GetType().ToString());
            return GetType().GetEvent(ev);
        }