public static void Register(string property, AccessLevels access, PropertyEventHandler handler, GetPropertyEventHandler gethandler) { m_Entries[property] = new PropertyEntry(property, handler, access); m_GetEntries[property] = new GetPropertyEntry(property, gethandler, access); }
public GetPropertyEntry(string property, GetPropertyEventHandler gethandler, AccessLevels accessLevel) { m_Property = property; m_GetHandler = gethandler; m_AccessLevel = accessLevel; }