// Token: 0x06000212 RID: 530 RVA: 0x00008570 File Offset: 0x00006770
 internal static void ExecuteQueryWithTraces(UserContext userContext, IClientContext context, DataProviderCallLogEvent logEvent, string spCallName)
 {
     try
     {
         if (logEvent != null)
         {
             logEvent.TrackSPCallBegin();
         }
         context.ExecuteQuery();
     }
     finally
     {
         if (logEvent != null)
         {
             logEvent.TrackSPCallEnd(spCallName, context.TraceCorrelationId);
         }
         OneDriveProUtilities.SendPendingGetNotification(userContext, new AttachmentOperationCorrelationIdNotificationPayload
         {
             CorrelationId      = context.TraceCorrelationId,
             SharePointCallName = spCallName
         });
     }
 }