Event arguments to the EntityqueryPagedCollectionView PageLoadError event.
Inheritance: System.EventArgs
 private PageLoadErrorEventArgs OnPageLoadError(IBaseOperation op) {
   var handler = PageLoadError;
   var args = new PageLoadErrorEventArgs(op.Error);
   if (handler != null) {
     handler(this, args);
   }
   return args;
 }
 private void pcv_PageLoadError(object sender, PageLoadErrorEventArgs e) {
   WriteToLog(e.Error.Message);
   e.MarkErrorAsHandled();
 }