GetMethodsByAttribute() 정적인 개인적인 메소드

static private GetMethodsByAttribute ( Type type, Type attr ) : List
type System.Type
attr System.Type
리턴 List
 public SerializationCallbacks(Type type)
 {
     this.onSerializingList   = SerializationCallbacks.GetMethodsByAttribute(type, typeof(OnSerializingAttribute));
     this.onSerializedList    = SerializationCallbacks.GetMethodsByAttribute(type, typeof(OnSerializedAttribute));
     this.onDeserializingList = SerializationCallbacks.GetMethodsByAttribute(type, typeof(OnDeserializingAttribute));
     this.onDeserializedList  = SerializationCallbacks.GetMethodsByAttribute(type, typeof(OnDeserializedAttribute));
 }