Multiple choice technology web technology

How do we disable transcoders and proxy servers at mobile network operators?

  1. System.Network.DisableTranscoder()

  2. Response.Cache.SetNoTransforms()

  3. Microsoft.Network.DisableProxyServer()

  4. Request.Cache.SetNoTransforms()

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Response.Cache.SetNoTransforms() adds an HTTP header that instructs mobile network transcoders and proxy servers not to modify the content, ensuring your mobile page renders as designed. The other options don't exist in the .NET framework - System.Network and Microsoft.Network don't have such methods, and it's Response not Request.