Aegis.Network.Session.SetMethodSelectHandler C# (CSharp) 메소드

SetMethodSelectHandler() 공개 메소드

public SetMethodSelectHandler ( object targetInstance, DispatchMethodSelector handler ) : void
targetInstance object
handler DispatchMethodSelector
리턴 void
        public void SetMethodSelectHandler(object targetInstance, DispatchMethodSelector<StreamBuffer>.MethodSelectHandler handler)
        {
            if (handler == null)
                return;

            _methodSelector = new DispatchMethodSelector<StreamBuffer>(targetInstance, handler);
        }