Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MSDN 说:DoesServiceRequest指定该方法将向存储服务发出一个或多个请求。
DoesServiceRequest
但是它没有说明为什么需要它。我可以用它来装饰我自己的模拟类,但我想知道的不仅仅是盲目地在我的方法上拍它。有人知道吗?
这是存储客户端库 API 调用上的装饰器,让您知道该特定 API 调用是否向存储服务发出请求,或者该 API 调用是否在本地运行。
例如,CloudBlockBlob.FetchAttributes 用 DoesServiceRequest 修饰,因为它对 Storage 进行 HTTP 调用。但是 CloudBlockBlob.GetSharedAccessSignature 没有该装饰器,因为该函数在本地进程内执行而不调用存储服务。