private Task OnReceivedAsync(EventArgsT <ReadOnlyMemory <byte> > e)
 {
     return(ReceivedAsync.InvokeAsync(this, e));
 }
示例#2
0
 private Task OnCallbackAsync(EventArgsT <object> e)
 {
     return(CallbackAsync.InvokeAsync(this, e));
 }
示例#3
0
 private void OnResultStream(EventArgsT <object> e)
 {
     ResultStream?.Invoke(this, e);
 }
示例#4
0
 private Task OnResultAsync(EventArgsT <object?> e)
 {
     return(ResultAsync.InvokeAsync(this, e));
 }
示例#5
0
 protected virtual void OnExceptionInvoked(EventArgsT <Exception> e)
 {
     ExceptionInvoked?.Invoke(this, e);
 }
示例#6
0
 protected virtual void OnReceived(EventArgsT <byte[]> e)
 {
     Received?.Invoke(this, e);
 }