Home

Blogs

Graph Batching for File Content: Mapping Requests to Responses
Graph Batching for File …

The Problem That’ll Drive You Crazy Picture this: you need to download 50 files from SharePoint using Microsoft Graph. Being a good developer, you decide to use batching instead of making 50 individual API calls (because nobody wants to wait that long, and Microsoft’s throttling limits …

CSOM Performance Optimization: Why You Should Batch Your SharePoint Operations
CSOM Performance …

The Problem: One-by-One Operations Kill Performance Following up on my previous post about DevProxy and throttling testing, there’s another critical performance issue I see regularly in SharePoint CSOM code: executing operations one by one instead of batching them. Consider this common pattern …

DevProxy: How to Test API Rate Limiting and Throttling in C# Development
DevProxy: How to Test API …

The Problem: When Parallel Programming Backfires If you’ve ever optimized your C# API calls with parallel programming, you might know this story. Your client wants faster performance. You run multiple API requests in parallel. Locally, everything flies — especially late at night when traffic is low. …