5 references to CreateMemoryStreamForByteArray
System.Net.Http (5)
System\Net\Http\ByteArrayContent.cs (3)
62CreateMemoryStreamForByteArray(); 65Task.FromResult<Stream>(CreateMemoryStreamForByteArray()); 68GetType() == typeof(ByteArrayContent) ? CreateMemoryStreamForByteArray() : // type check ensures we use possible derived type's CreateContentReadStreamAsync override
System\Net\Http\FormUrlEncodedContent.cs (1)
96GetType() == typeof(FormUrlEncodedContent) ? CreateMemoryStreamForByteArray() : // type check ensures we use possible derived type's CreateContentReadStreamAsync override
System\Net\Http\StringContent.cs (1)
112GetType() == typeof(StringContent) ? CreateMemoryStreamForByteArray() : // type check ensures we use possible derived type's CreateContentReadStreamAsync override