I'm creating an HttpWebRequest and storing it inside of an HttpState object. When I go to set AllowWriteStreamBuffering property of the request to false, I see that no such property exists. The download counterpart, AllowReadStreamBuffering, is available.
HttpState httpState = new HttpState();
httpState.request = (HttpWebRequest)HttpWebRequest.Create(this.remotepath);
//this compiles
httpState.request.AllowReadStreamBuffering = false;
//this doesn't compile
httpState.request.AllowWriteStreamBuffering = false;
Am I doing something wrong here? Or is there really no way to specify the buffering property for the WriteStream in Windows Phone 7?