示例#1
0
 public ISession SetSessionBehavior(ISessionBehavior bhvr)
 {
     behavior = bhvr ?? throw new ArgumentNullException(nameof(bhvr));
     return(this);
 }
示例#2
0
        public ISocketSession SetSessionBehavior(ISessionBehavior behavior)
        {
            this.behavior = behavior ?? throw new ArgumentNullException(nameof(behavior));

            return(this);
        }