Inheritance: System.Attribute
Beispiel #1
0
 public HandlerMethodReference(Action <object, object> handlerMethod, IPacketHandler parentHandler, PacketAttribute handlerMethodAttribute)
 {
     HandlerMethod          = handlerMethod;
     ParentHandler          = parentHandler;
     HandlerMethodAttribute = handlerMethodAttribute;
     Identification         = HandlerMethodAttribute.Header;
 }
 public HandlerMethodReference(Action<object, object> handlerMethod, IPacketHandler parentHandler, PacketAttribute handlerMethodAttribute)
 {
     HandlerMethod = handlerMethod;
     ParentHandler = parentHandler;
     HandlerMethodAttribute = handlerMethodAttribute;
     Identification = HandlerMethodAttribute.Header;
     PassNonParseablePacket = false;
 }