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);
        }